$(document).ready(function()
{

imageHtml = $('#gallery').html()
$('#gallery-menu').html(imageHtml);

$('#gallery img').hide();
$('#gallery img:nth(0)').show();
totalImages = $("#gallery img").size();
$("#gallery-description").html('<strong>1/' + totalImages + '</strong> ' + $('#gallery-menu img:nth(0)').attr('alt'));


$('#gallery-menu img').css('opacity' , '0.6').each(function()
	{
		var imageSrc = $(this).attr('src');
		$(this).attr('src', imageSrc + '-thumb'); 
	});

$('#gallery-menu img').hover(function()
	{
		$(this).removeAttr('style');
		
	},function()
	{
		$(this).css('opacity' , '0.6');
	});

$('#gallery-menu img').click(function()
	{
		var thisImage = $('#gallery-menu img').index(this);
		var thisImageNumber = thisImage+1;
		$('#gallery img').hide();
		$('#gallery img:nth('+ thisImage +')').fadeIn(200);
		$('#gallery-description').text($(this).attr('alt')).prepend('<strong>' + thisImageNumber + '/' + totalImages + ' </strong>');
		
	});


});


