$(document).ready(function(){
$("#nav>li").hoverIntent(
    function(){$("ul",this).slideDown("slow");},
    function(){$("ul",this).css({left:"114px"}).css({top:"0px"}).slideUp("fast");});
});

/*function Show(id){
  if (document.getElementById){
    if(document.getElementById(id).style.display == 'none'){
      document.getElementById(id).style.display = 'block';
	  document.getElementById(id).style.left="114px";
	  document.getElementById(id).style.top="0px";
    }else{
      document.getElementById(id).style.display = 'none';
    }
  }
} ;*/

$(document).ready(function(){
$("#navpath>li").hoverIntent(
    function(){$("ul",this).slideDown("slow");},
    function(){$("ul",this).css({left:"12px"}).css({top:"12px"}).slideUp("fast");});
});