$(function() {

//$('#top-left').animate({"opacity": 0});


$('#top-left img').hover(function() {
	$(this).stop().css({"top": '-398px'});

}, function() {
	$(this).stop().css({"top": '0px'});
});


$('#top-right img').hover(function() {
	$(this).stop().css({"top": '-398px'});

}, function() {
	$(this).stop().css({"top": '0px'});
});

$('#bottom-left img').hover(function() {
	$(this).stop().css({"top": '-597px'});

}, function() {
	$(this).stop().css({"top": '-199px'});
});

$('#bottom-right img').hover(function() {
	$(this).stop().css({"top": '-597px'});

}, function() {
	$(this).stop().css({"top": '-199px'});
});

});
