$(document).ready(function() { 			   
						   								  
    $(".animate-the-masthead").hover(function() { 
        $("#masthead_inner").animate({  
            width: "424"
        }, 300); 
    }); 
	$(".animate-the-masthead").mouseleave(function() { 
        $("#masthead_inner").animate({  
            width: "390"
        }, 300); 
    });
	
	
}); 




