
  $(document).ready(function () {
/*
	  $("#primary-menu>li").each(function(){
		  $("#"+this.id).attr('style', 'width:'+$("#"+this.id).width()+'px !important');
	  });
  */
	  $("#primary-menu>li").hover(function() {
      $("#"+this.id).find('ul').show();  
	  }, function() {
      $("#"+this.id).find('ul').hide();
	  });

  
  });
  
