$(document).ready(function(){
	$(".homeNav").mouseover(function(){
		$(this).children("img").stop().animate({height:'189px'},{queue:false, duration:200, easing: 'easeInSine'})
	});
	$(".homeNav").mouseout(function(){
		$(this).children("img").stop().animate({height:'191px'},{queue:false, duration:300, easing: 'easeOutSine'})
	});
});
