window.addEvent('domready', function(){
	var newsHome = function(){
		if($('newsHome')){
			$$('#newsHome .box').each(function(item){
				item.addEvent('mouseenter',function(){
					item.addClass('over');
				});
				item.addEvent('mouseleave',function(){
					item.removeClass('over');
				});
				item.addEvent('click',function(){
					location.href=item.getElement('a').get('href');
				});
			});
		}
	}.run();
	
	var boxHome = function(){
		if($('boxHome')){
			$$('#boxHome .box').each(function(item){
				item.addEvent('click',function(){
					location.href=item.getElement('a').get('href');
				});
			});
		}
	}.run();
	
});
