$(function() {
	

	var thumbLinks = $('#coverThumbs a');
	var thumbCount = thumbLinks.length;
	var thumbImages = $('#coverThumbs img');
	var image = $("#galleryImage");
	var fadeSpeed = "fast";


	image.hide();
	setTimeout("$('#galleryImage').fadeIn('fadeSpeed')", 400);
	$("#galleryCounter").html("Image 1 of "+thumbCount+"");


	thumbLinks.each(function(i) {

		var current = (i+1);
	

			this.onclick = function () {

				var imageUrl = this.getAttribute('href'); 
					
				var imageDescription = $(this).find("img").attr("alt");

				image.fadeOut(fadeSpeed, function() {

					$("#galleryImage img").attr({ src: imageUrl, alt: imageDescription});

					setTimeout("$('#galleryImage').fadeIn('fadeSpeed')", 400); 

					$("#galleryCounter").html("Image "+current+" of "+thumbCount+"")


				})


				return false;	
			}



	})




});