$(function() { //  on document ready
	// Handle homepage galleries
	if($('.gallery').length) {
		$('<img src="'+$('.gallery_image img').attr('src')+'"/>').load(function() { // once we know the original image is loaded
			$('.gallery_images').height($('.gallery_image img').height()); // fix the height
		});
		if($('.gallery_thumbnails li').length>1) { // if more than one image
			var curThumb = $('.gallery_thumbnails li').eq(0); // current thumbnail
			var showNext = function() { // define the function that shows the next one
				var next = curThumb.next();
				if(!next.length) next = $('.gallery_thumbnails li').eq(0);
				var src = next.find('a').attr('href');
				$('<img src="'+src+'"/>').load(function() {				
					$('<span class="gallery_image" style="display:none;"><img src="'+src+'" alt="Photo slideshow"/></span>').appendTo('.gallery_images').fadeIn(1500,function() {
						$(this).siblings().remove();
						curThumb = next;
					}); // add the image and fade it in
				});
				setTimeout(showNext,4000); // continue to the next after 3000ms
			};
			setTimeout(showNext,2000); // and do it after 1000ms			
		}
		$('.gallery_image').live('click',function() { // make sure the click works in IE et al
			$('.gallery_images').css('cursor','pointer');
			if($(this).parents('a')) window.location.href = $(this).parents('a').attr('href');
		});
	};
});