  $(document).ready(function(){
							 
		$("button").click(function () {
									
			if ($("#topmenu").is(":hidden")) {
        		$("#topmenu").slideDown("slow");
				$("#services").fadeIn("slow");
				$("#content").fadeIn("slow");
				$("#maincontent").fadeIn("slow");
				$("#promochoice").fadeIn("slow");
				$("#subcontents").fadeIn("slow");
				$("#sidebar").fadeIn("slow");
				$("#footers").slideDown("slow");
				$("#reveal").slideUp("slow");
				$("#mask").fadeIn("slow");
      		} else {
        		$("#topmenu").slideUp("slow");
				$("#services").fadeOut("slow");
				$("#content").fadeOut("slow");
				$("#maincontent").fadeOut("slow");
				$("#promochoice").fadeOut("slow");
				$("#subcontents").fadeOut("slow");
				$("#sidebar").fadeOut("slow");
				$("#footers").slideUp("slow");
				$("#reveal").slideDown("slow");
				$("#mask").fadeOut("slow");
      		}
		});
		
  });
  
  function showPromo(promonum) {
		for (c=0; c<=2; c++) {
			if (c==promonum) {
				$("#promo"+ c).fadeIn("fast");
			} else {
				$("#promo"+ c).fadeOut("fast");
			}			
		}		
	}
  
  

  