$( document ).ready( function() {
	$( "#thumbnailContainer li" ).hover( function() {
		$( this ).find( "img" ).animate( { top: "-120px" }, { queue: false, duration: 500 } );
	}, function() {
		$( this ).find( "img" ).animate( { top: "0" }, { queue: false, duration: 500 } );
	} );
} );
