$(document).ready(function(){	
	$(document).ready(function () {
		$(".prime").animate({ opacity: "0" }, 0 );		
		$(".prime").animate({ opacity: "1" }, 1000 );		
		$(".fadein").animate({ opacity: "0" }, 0 );		
		$(".fadein").animate({ opacity: "1" }, 3000 );
      });
});

$(document).ready(function(){
	
	$(".printshow").click(function(){
		$("#print").animate({ zIndex: "1000" }, 1 );
		$("#print").animate({ opacity: "1" }, 500 );						
		$("#print").animate({ marginTop: "-77%" }, 1000 );		
		$("#print").animate({ height: "96%" }, 1500 );
		$(".testcontent").animate({ opacity: "1" }, 5000 );
		$("#closer").animate({ marginLeft: "0" }, 1500 );										
		$(this).toggleClass("printshow"); return false;
	});

	$(".printhide").click(function(){
		$(".testcontent").animate({ opacity: "0" }, 500 );
		$("#print").animate({ height: "25px" }, 1500 );
		$("#print").animate({ marginTop: "-25px" }, 1000 );							
		$("#print").animate({ opacity: "0" }, 500 );								
		$("#print").animate({ zIndex: "10" }, 1 );
		$("#closer").animate({ marginLeft: "-110px" }, 1500 );				
		$(this).toggleClass("printshow"); return false;
	});

	$(".photoshow").click(function(){
		$("#photo").animate({ zIndex: "1000" }, 1 );
		$("#photo").animate({ opacity: "1" }, 500 );						
		$("#photo").animate({ marginTop: "-77%" }, 1000 );		
		$("#photo").animate({ height: "96%" }, 1500 );
		$(".testcontent").animate({ opacity: "1" }, 5000 );								
		$(this).toggleClass("printshow"); return false;
	});

	$(".photohide").click(function(){
		$(".testcontent").animate({ opacity: "0" }, 500 );
		$("#photo").animate({ height: "25px" }, 1500 );
		$("#photo").animate({ marginTop: "-25px" }, 1000 );							
		$("#photo").animate({ opacity: "0" }, 500 );								
		$("#photo").animate({ zIndex: "10" }, 1 );		
		$(this).toggleClass("printshow"); return false;
	});	
	 
});
