// JavaScript Document


//start of opacity on selected script
$(document).ready(function(){

	/*$(".page_container").height($(document).height());    100% height*/
	
	$(".gallery_thumbnails a").click(function(e){
		
		e.preventDefault();

		//update thumbnails
		$(".gallery_thumbnails a").removeClass("selected");
		//$(".gallery_thumbnails a").children().css("opacity",".7");
		$(this).addClass("selected");
		//$(this).children().css("opacity","1");

		//setup vars from thumbnail
		var photo_caption = $(this).attr("title");
		var photo_fullsize = $(this).attr("href");
		var photo_preview = photo_fullsize.replace("_fullsize","_preview");



		$('.gallery_preview').html('<a href="'+photo_fullsize+'" title="'+photo_caption+'"  style="background-image:url('+photo_preview+');"></a>');
		$('.gallery_caption').html('<p><a href='+photo_fullsize+' title='+photo_caption+'>View Larger</a></p>	<p>'+photo_caption+'</p>')
		

		//temporary disable link to  fullsize image
		$('.gallery_preview').click(function() { return false; });

	});
		// Set the first preview image
		var first_photo_caption = $('.gallery_thumbnails a').first().attr('title');
		var first_photo_fullsize = $('.gallery_thumbnails a').first().attr('href');
		var first_photo_preview = first_photo_fullsize.replace("_fullsize", "_preview");
		$('.gallery_preview').html('<a class="overlayLink" title="'+first_photo_caption+'" href="'+first_photo_fullsize+'" style="background-image:url('+first_photo_preview+');"></a>');
		$('.gallery_caption').html('<p><a class="overlayLink zoom" title="'+first_photo_caption+'" href="'+first_photo_fullsize+'">View larger</a></p><p>'+first_photo_caption+'<a href="'+first_photo_fullsize+'" style="background-image:url('+first_photo_preview+');"></a></p>');

		//temporary disable link to  fullsize image
		$('.gallery_preview').click(function() { return false; });

});

