$(document).ready(function(){
  
  $(".left_menu li").mouseover(function(e){
    if ($(this).parent('ul').attr('class')!='sub')
    {
      $(this).addClass('hover');
	}
  });
  
  $('.left_menu li').mouseout(function(e){
    if ($(this).parent('ul').attr('class')!='sub')
    {
	  $(this).removeClass('hover');
	}
  });
  
  $('.menu li').bind("mouseover", function(e) {
    if ($(this).parent().attr('class')!='sub')
	{
      cls = $(this).attr('class');
      if (cls == 'first' || cls == 'last')
	  {
	    cls = cls + "_hover";
        $(this).attr('class',cls);
	  }
	  else
	    $(this).addClass('hover');
	}
  });
  
  $('.menu li').bind("mouseout", function(e) {
    if ($(this).parent().attr('class')!='sub')
    {
      cls = $(this).attr('class');
      if (cls == 'first_hover' || cls == 'last_hover')
	  {
	    cls = cls.replace('_hover',"");
        $(this).attr('class',cls);
	  }
	  else
	    $(this).removeClass('hover');
	}
  });
  
});
