$(document).ready(function() {
	$("ul.IEHoverFix ul").each(function () {
		$(this).prepend("<iframe style=\"width: " + $(this).attr('offsetWidth') + "px; height: " + $(this).attr('offsetHeight') + "px;\"></iframe>");
	});
	
	$("#nav ul li").hover(
		function () {
			$(this).addClass("hover");
		}, 
		function () {
			$(this).removeClass("hover");
		}
	);
	$("#home-descrnote ul li").hover(
		function () {
			$(this).addClass("hover");
		}, 
		function () {
			$(this).removeClass("hover");
		}
	);

});