function imageStrip()
{
	// Preload images
	$(".thumbStrip a").each(function() {
		preload_image = new Image(1,1); 
		preload_image.src=this.href; 
	});
	
	$('.thumbStrip a:first').addClass('selected');
	
	$(".thumbStrip a").hover(function(e){
		$(".thumbStrip a").removeClass('selected');
		
		$(this).addClass('selected');
		$("#image-caption").text($(".selected img").attr("alt"));
		$('.galleryImg').append("<img style='display:none;' class='appearing' src='" + $(this).attr('href') + "'>");
		$('.galleryImg img:last').fadeIn('slow', function() {
			$('.galleryImg img:first').remove();
		});
	});
	
	$(".thumbStrip a").click(function(e){
		e.preventDefault();
	});
}
