$(function() {
			
		
			var thumbLinks = $('#galleryThumbs a');
			var thumbCount = thumbLinks.length;
			var thumbImages = $('#galleryThumbs img');
			var image = $("#galleryImage");
			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 () {

						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')", 800); 

							//$("#galleryCounter").html("Image "+current+" of "+thumbCount+"")
							$('#leyenda').html(imageDescription);

						})


						return false;	
					}



			})




		});