$(document).ready(function() {
	
	$('#gallery li .description').hide();
	$('#gallery li .img-more').hide();	
	
	$('#gallery li').hover( 
		function() {
			$keyimage = $(this).find('.img-key');
			$description = $(this).find('.description');
			$moreimages =  $(this).find('.img-more');
			
			$keyimage.hide();
			$description.show();
			
			if ($moreimages.length) {
				$keyimage.find('img').clone().appendTo($moreimages);
				$description.click(function() {
					$(this).hide();
					$moreimages.show();
					$moreimages.cycle({ 
					    speed:  1, 
					    next:   $moreimages, 
					    timeout: 0 
					});
				});
				$description.attr("title","Click for more images...");
				$description.css("cursor","e-resize");
			}
		},
		function() {
			$(this).find('.description').unbind().hide();
			$(this).find('.img-more img:last').remove();
			$(this).find('.img-more').unbind().hide();
			$(this).find('.img-key').show();
		}
	);
});
