// main menu

function mainMenu() {
	var timeout = null;
	
	jQuery('#header ul li').hover(	
		function (){
			var item = jQuery(this);
			timeout = setTimeout(
				function (){
					jQuery('ul', item).show();
					item.addClass('mouseon');
				}
			, 100);
		}
	,
		function () {
			var item = jQuery(this);
			if (timeout) clearTimeout(timeout);
			jQuery('ul', item).hide();
			item.removeClass('mouseon');
		}
	);

}

function browserCheck() {
	if ($.browser.msie && ($.browser.version <= 7)) {
		$('body').addClass('oldmsie');
		var rightHeight = $('#rightcont').height();		
		$('body').height(rightHeight);
	};
};

