$(document).ready(function(){
	$('#landscape').hover(function(){
		$(this).children('.front').stop().animate({'top'  : '191px'}, 500);
	},function(){
		$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);
	});
	
	$('#snow').hover(function(){
		$(this).children('.front').stop().animate({'top'  : '191px'}, 500);
	},function(){
		$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);
	});
	
	$('#urban_garden').hover(function(){
		$(this).children('.front').stop().animate({'top'  : '191px'}, 500);
	},function(){
		$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);
	});
	
	$('#coverage').hover(function(){
		$(this).children('.front').stop().animate({'top'  : '191px'}, 500);
	},function(){
		$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);
	});
});
