$(document).ready(function() {
	
	$("ul#homepage-nav li").hover(function() {
		$(this).css({'z-index' : '10'});
		$(this).find('img').addClass("hover").stop(false, false)
			.animate({
				marginTop: '-55px', 
				marginLeft: '-26px',  
				width: '246px', 
				top: '30px', 
				left: '10px',				
				height: '319px'
			}, 190);
			
		$(this).find('h2').stop(false,false)
			.animate({
				'bottom' : '-20px',
				'left' : '-15px'
			}, 190);

		} , function() {
		$(this).css({'z-index' : '0'});
		$(this).find('img').removeClass("hover").stop(false, false)
			.animate({
				marginTop: '0', 
				marginLeft: '0',
				top: '0', 
				left: '0', 
				width: '213px', 
				height: '276px'
			}, 190);
			
	   $(this).find('h2').stop(false, false)
			.animate({
				'bottom' : '0',
				'left' : '0'
				
			},190);
	});
});

