$(function(){

	var top = $('#mainmenu').offset().top - parseFloat($('#mainmenu').css('margin-top').replace(/auto/, 0));
	//top = top - 40;
	
    $(window).scroll(function (event) {
      // what the y position of the scroll is
      var y = $(this).scrollTop();
      // whether that's below the form
      if (y > top) {
        // if so, ad the fixed class
        $('#mainmenu').removeClass('mainmenu').addClass('mainmenu_fixed');
      } else {
        // otherwise remove it
        $('#mainmenu').removeClass('mainmenu_fixed').addClass('mainmenu');
      }
    });
    
    //$("ul.dropdown li").hover(function(){
//alert("his");
        //$(this).addClass("hover2");
        //$('ul:first',this).css('visibility', 'visible');
    
    //}, function(){
    
        //$(this).removeClass("hover2");
        //$('ul:first',this).css('visibility', 'hidden');
    
    //});
    
    //$("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

});
