function galleryShow() {
	
var imageId
	
jQuery('#photoList li img').click(function(){
	
imageId = jQuery(this).attr("id")

//$('#vanMovie').hide();

jQuery('#mainResortImage').fadeTo(500, 0)
	
	.queue(function( nxt ) { 
              jQuery('#mainResortImage').attr('src','cm/dynamic/large/' + imageId + '.jpg');
               nxt(); // allow the queue to continue
			})
			
	.delay(200)

	.fadeTo(800, 1)
				
});	
	
	
}
