// JavaScript Document
    $(document).ready(function()
        {
			$("#showTest").click(function(event) {
				event.preventDefault();
				$("#test").slideToggle();
				$("#test2").slideUp(1000);
				$("#test3").slideUp(1000);
				$(this).toggleClass("active");
				$("#showTest2").removeClass("active");
				$("#showTest3").removeClass("active");
				return false;
			});
			$("#test").hide();
			
			$("#showTest2").click(function(event) {
				event.preventDefault();
				$("#test2").slideToggle();
				$("#test").slideUp(1000);
				$("#test3").slideUp(1000);
				$(this).toggleClass("active");
				$("#showTest").removeClass("active");
				$("#showTest3").removeClass("active");
				return false;
			});
			$("#test2").hide();
			
			$("#showTest3").click(function(event) {
				event.preventDefault();
				$("#test3").slideToggle();
				$("#test").slideUp(1000);
				$("#test2").slideUp(1000);
				$(this).toggleClass("active");
				$("#showTest").removeClass("active");
				$("#showTest2").removeClass("active");
				return false;
			});
			$("#test3").hide();
			/* 
			$("#test").hide();
			//$("#hideTest").hide();
			$("#showTest").click(function()
			{
				//$(this).hide();
				$("#test").slideDown(700);
				//$("#test").css("border","2px solid #F00");//controlling CSS
				$(".allCap").css("text-decoration","underline"); //controlling CSS - class
				//$("#hideTest").show("slow");
			});
			
			$("#hideTest").click(function()
			{
				//$(this).slideUp("normal");
				$("#test").slideUp(1000);
				//$("#showTest").show("slow");
			});
            
			$("#someId").click(function()
                {
                   $(this).fadeOut("slow");
				   $("#hideID").hide("slow");
                });
			*/
    	$("a[rel^='prettyOverlay'],a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed: 'normal', /* fast/slow/normal */
			padding: 40, /* padding for each side of the picture */
			opacity: 0.55, /* Value betwee 0 and 1 */
			showTitle: true, /* true/false */
			allowresize: true /* true/false */
		});
	});