$(function(){

	$(".scrapbook_gallery_item").each(function(){
	
		 $(this).fadeTo(0, 0.7);
		 
		 $(this).bind("mouseover", function(){
		 	$(this).fadeTo(0, 1);
		 })
		 
		 $(this).bind("mouseout", function(){
		 	$(this).fadeTo(0, 0.7);
		 })
	
	})
	
	//Hide the other images
	$(".gallery_output").hide()
	$("#gallery_output_1").show()
	$("#gallery_output_1").addClass("open_gallery")
	
	//Switch the galleries
	$(".gallery_trigger").bind('click', function(){
		
		//The id of the a tag clicked
		id = $(this).attr("id").split("_")[1]
		
		//Hide the existing one
		$(".open_gallery").hide()
		$(".open_gallery").removeClass("open_gallery")
		
		//Show the newly selected one
		$("#gallery_output_"+id).addClass("open_gallery")
		$("#gallery_output_"+id).show()
		
		return false
	})


})


