// Show - Hide Menubar

//$(document).ready(function(){
	
//	$(document.getElementById("menu")).click(function () {
//      if (document.getElementById("submenu").style.display=='none') {
//        $(".submenu_titles").slideDown("fast");
//		$(".content_div").animate({"top": "+=20px"}, "fast");
//      } else {
//        $(".submenu_titles").slideUp("fast");
//		$(".content_div").animate({"top": "-=20px"}, "fast");
//      }
//    });


//  });


function searchboxshow(){
	
	
      if (document.getElementById("searchbox").style.display=='none') {
        $(".search_box").fadeIn("fast");
		 $(".contact_box").fadeOut("fast");
      } else {
        $(".search_box").fadeOut("fast");
      }


  };
  
  function contactboxshow(){
	
	
      if (document.getElementById("contactbox").style.display=='none') {
        $(".contact_box").fadeIn("fast");
		$(".search_box").fadeOut("fast");
      } else {
        $(".contact_box").fadeOut("fast");
      }


  };

