$(document).ready(function(){
	initBehaviour();													 
});

function initBehaviour()
{
	$('html').addClass('js')
        initDropNav();
} // initBehaviour()

function initDropNav()
{
	$("div.navWrapper ul.nav li").hover(
		function(){
			$(this).addClass("hover");
			$(this).find("div.dropNavWrapper").css("visibility", "visible");
		},
		function(){
			$(this).removeClass("hover");
			$(this).find("div.dropNavWrapper").css("visibility", "hidden");
		}
	);
} // initDropNav()
