$(function() {

    $('#vertical1').hover(function() {
        $('img.topPhoto', $(this)).stop().animate({top: '500px'}, 500);
    },function() {
        $('img.topPhoto', $(this)).stop().animate({top: '0'}, 500);
    });
	
	 $('#vertical2').hover(function() {
        $('img.topPhoto', $(this)).stop().animate({top: '500px'}, 500);
    },function() {
        $('img.topPhoto', $(this)).stop().animate({top: '0'}, 500);
    });
	 
	  $('#vertical3').hover(function() {
        $('img.topPhoto', $(this)).stop().animate({top: '500px'}, 500);
    },function() {
        $('img.topPhoto', $(this)).stop().animate({top: '0'}, 500);
    });
});

