$(document).ready(function(){

// Navigering -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

	var oNav;
	var arrRolldown;

	// Dropdown
	$("#nav li").hoverIntent(function() { $(this).find("ul").css("display","block"); }, function() { $(this).find("ul").css("display","none"); });

	// Dropdownlänkning
	$("#nav ul li").click(function() { document.location = $(this).find("a:first")[0]; });


	//$(document).click(navClear);
	$("#subNav li").click(function(e){ document.location = $(this).find("a:first")[0]; });

});
