$(document).ready(function() {			
		// Hover Block footer logo
		$('ul.hover_block li').hover(function(){
				$(this).find('img').animate({top:'-24px'},{queue:false,duration:700});
			}, function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:700});
		 });				
});
