$(document).ready(function()
  {
$(".changeBlue").click(function() {
			$("#left_container").fadeOut(500, function(){
				$(this).fadeIn(500);			
			});						
	});

$("#prev_photo").click(function() {
var photopage1 = document.getElementById("photo1").style.display+"";
var photopage2 = document.getElementById("photo2").style.display+"";
		$("#photo2").fadeOut("slow", function() {
		$("#photo1").fadeIn("slow", function() {
		  $("#prev").fadeOut(600);
		  $("#next").fadeIn(600);
		});
	});
});

$("#next_photo").click(function() {
var photopage1 = document.getElementById("photo1").style.display+"";
var photopage2 = document.getElementById("photo2").style.display+"";
		$("#photo1").fadeOut("slow", function() {
		$("#photo2").fadeIn("slow", function() {
		  $("#prev").fadeIn(600);
		  $("#next").fadeOut(600);
		});
    });
});


$("#closer").click(function() {
	$(this).animate({
	opacity: 0,
	filter: 'alpha(opacity=0)',
    height: '0px',
	width: '0px' },3000);
});

  });


