if (typeof(jQuery) !== "undefined") {
	if ( jQuery.browser.msie && jQuery.browser.version.substr(0,1)=="6" ) {
		$("#main-menu-bottom LI.sub").mouseover(function(){
			$("UL", this).css("display", "block");
			$("UL", this).css("width", "120px");
		});
		$("#main-menu-bottom LI.sub").mouseout(function(){
			$("UL", this).css("display", "none");
		});
	}
	if ( jQuery.browser.msie && jQuery.browser.version.substr(0,1)=="6" ) {
		$("#main-menu-top LI.sub").mouseover(function(){
			$("UL", this).css("display", "block");
			$("UL", this).css("width", "120px");
		});
		$("#main-menu-top LI.sub").mouseout(function(){
			$("UL", this).css("display", "none");
		});
	}
}

(function($) {
  $("#langsub").mouseenter(function(){
      $("ul",this).removeClass("hidden");
    }).mouseleave(function(){
      $("ul",this).addClass("hidden");
  });

})(jQuery);

/*
$(document).ready(function(){
	if(jQuery.browser.msie && jQuery.browser.version == "7.0")
	{
		jQuery(document).bind('mousewheel', function(e){
			jQuery(document).keydown(function(e) {
				if (e.ctrlKey) {
					jQuery('#container').css('top','auto');
				}
			});
		});
	}
});
*/

