$(document).ready(function() {
			$('ul.home_hover li').hover(function(){
				$(this).find('img').fadeOut({top:'0px'},{queue:false,duration:1500});
			}, function(){
				$(this).find('img').fadeIn({top:'0px'},{queue:false,duration:1200});
			});
			
		});