// Only for IE 6
navHover = function() {
	$('#navmenu > li').each(function(i){
		$(this).prepend('<iframe src="about:blank" class="iehoveriframe" width="1" height="1" frameborder="0" scrolling="no"></iframe>');
		$(this).hover(
			function () {
				$(this).addClass('iehover');
				$(this).find("iframe").width( $(this).find("ul").width() );
				$(this).find("iframe").height( $(this).find("ul").height() );
			}, 
			function () {
				$(this).removeClass('iehover');
			}
		);
	});
}
window.attachEvent("onload", navHover);