$(function() {
	
	/*  Photo Gallery
	*****************************************************/
	
	// initial attributes
	var thumbLength = $("#galleryThumbs a").length;
	$('#galleryCounter').show().html("Image 1 of "+thumbLength+""); 
	$("#galleryImage img").hide().fadeIn('slow'); 
	$("#galleryThumbs li a img").fadeTo(0 ,0.5, function(){
		$("#galleryThumbs li:first a img").fadeTo('fast',1).addClass('selected');
		
	});

	// thumbnail actions 
	$("#galleryThumbs li a").each(function(i) {
		$(this).click(function(){
			$("#galleryThumbs li a img").fadeTo('fast',0.5).removeClass('selected');
			$(this).children('img').fadeTo(0, 1).addClass('selected');
			$("#galleryCounter").html("Image "+(i+1)+" of "+thumbLength+""); 
			$("#galleryImage img").hide().attr({'src': $(this).attr('href'), 'alt': $(this).attr('title')}).fadeIn('slow'); 	
			return false;
		});
	});
	

});



