$(document).ready(function(){
		
    var hoverClass = 'active';
    
		$('.cmsmenu>ul>li').hover(
      function() {
        $(this).addClass(hoverClass);
		    $(this).find(">ul").stop(true,true).show().animate({opacity: 1, top: $(this).height()},200,
          function() {
            //$(this).parent().addClass('active');
            });
      }, 
      function() {
        $(this).removeClass(hoverClass);
		    $(this).find(">ul").stop(true,true).animate({opacity: 0,top: $(this).height()+10},200,
          function() {
            $(this).hide();
            $(this).find(">ul").hide();
            });
      });
      
    $('.cmsmenu>ul>li ul li').hover(
      
      function() {
		    $(this).addClass(hoverClass);
        $(this).find("ul").css('left',$(this).width()).css('top','0');
        $(this).find(">ul").stop(true,true).show().animate({opacity: 1, top: 0},200,
          function() {
            //$(this).parent().addClass('active');
            });
      }, 
      function() {
        $(this).removeClass(hoverClass);
		    $(this).find(">ul").stop(true,true).animate({opacity: 0,top: -10},200,
          function() {
            $(this).hide();
            
            });
      });
      
      
    return false;
	
	

});
