		$(function() {		
			var thumbLinks = $('#galleryThumbs a');
			//var thumbCount = thumbLinks.length;
			var thumbImages = $('#galleryThumbs img');
			var image = $("#galleryImage");
			var descImages =$("#descImages");
			var fadeSpeed = "fast";
		
			image.hide();			
			setTimeout("$('#galleryImage').fadeIn('fadeSpeed')", 800);
			//$("#galleryCounter").html("Image 1 of "+thumbCount+"");
	
			thumbLinks.each(function(i) {
				var current = (i+1);			
					this.onclick = function () {;
						descImages.hide();
						var imageUrl = this.getAttribute('href'); 							
						var imageDescription = $(this).find("img").attr("alt");
						descImages.html(imageDescription);
						image.fadeOut(fadeSpeed, function() {
							$("#galleryImage img").attr({ src: imageUrl, alt: imageDescription});
							setTimeout("$('#galleryImage').fadeIn('fadeSpeed')", 800); 
							descImages.show();
							//$("#galleryCounter").html("Image "+current+" of "+thumbCount+"")
						})
						return false;	
					}
			})
		});
