/* IE6 flicker fix
-------------------------------------------------- */
try {
	document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}


/* jQuery
-------------------------------------------------- */

/* document ready */

// $(document).ready(function(){
// 
// 	$("#meny li ul").bind("mouseenter",function(){
// 		$(this).parent().addClass("hover");
// 	}).bind("mouseleave",function(){
// 		$(this).parent().removeClass("hover");
// 	});
// 	
// 	/* IE6 */
// 	if($.browser.msie && ($.browser.version < 7) ){
// 		$("#meny li").bind("mouseenter",function(){
// 		$(this).find("ul").css("display", "block");
// 		}).bind("mouseleave",function(){
// 			$(this).find("ul").css("display", "none");
// 		});
// 	}
// 
// 	$("*[title].tooltip").tooltip();
// 	
// });
