
var CORP = {};

CORP.lead_news_hover = function(){
					
						
		jQuery("#first").hover(
						function(){
								jQuery("#first .hidden_title").animate({top:"75px"},{duration:500, queue:false});
								},
						function(){
								jQuery("#first .hidden_title").animate({top:"150px"},{duration:500, queue:false});
								})
		jQuery("#second").hover(
						function(){
								jQuery("#second .hidden_title").animate({top:"75px"},{duration:500, queue:false});
								},
						function(){
								jQuery("#second .hidden_title").animate({top:"150px"},{duration:500, queue:false});
								})
		jQuery("#third").hover(
						function(){
								jQuery("#third .hidden_title").animate({top:"75px"},{duration:500, queue:false});
								},
						function(){
								jQuery("#third .hidden_title").animate({top:"150px"},{duration:500, queue:false});
								})
}
						
						
						
$(document).ready(function() {	
CORP.lead_news_hover();	
});