function loadPage(addr){
	$.get(addr, function(data){
	  document.getElementById("productpage").innerHTML=data;
	});
}



function initMenu() {
  $('#menu ul').hide();
  	var x=$.getURLParam("page"); 
   $("#menu ul:eq("+x+")").show();	

 
  $('#menu li a').click(
    	function() 
		{
    	 var checkElement = $(this).next();
     	 if((checkElement.is('ul')) && (checkElement.is(':visible'))) 
		 	{
      		  checkElement.slideToggle('normal');
			  return false; 
             }
         if((checkElement.is('ul')) && (!checkElement.is(':visible'))) 
		    {
      		 $('#menu ul:visible').slideUp('normal');
        	  checkElement.slideDown('normal');
              return false;
             }
        }
    );
  	
  }
  

$(document).ready(function() {initMenu();});

