$(function() {
  $('div.menupopup').
    mouseover(function() {
      var parent = $(this).attr('parent');
      $('#'+parent).addClass('menu_hover');
      $(this).show();
    }).
    mouseout(function() {
      $(this).hide();
      var parent = $(this).attr('parent');
      $('#'+parent).removeClass('menu_hover');
    });
});
$(function() {
  $('a.menu_popup').
    mouseover(function() {
      var offset = $('#menu').offset();
      var menutop = offset.top + $('#menu').height(); 
      var offset1 = $('#'+this.id).offset();
	  var menuleft = offset1.left;
	  if ($(this).hasClass('menu_current')) {    
	  	$(this).addClass('menu_hover');
	  }
	  $('#s'+this.id).css({top:menutop+"px", left:menuleft+"px"}).show();
	}).
	mouseout(function() {
	  $('#s'+this.id).hide();
	  if ($(this).hasClass('menu_current')) {    
	    $(this).removeClass('menu_hover');
	  }
	});
});
