$(document).ready(function () {

	$('.mainNav li.level1').hover(
		function(){
			this.className += " sfhover";
			//set width of the menu li to the full width of the menu
			$(this).find('ul.menu li').width($(this).find('ul.menu').width());

/*
			var pos = $(this).find('ul.menu').position();
			alert(pos.left + " " + pos.top);
*/
			
		},
		
		function(){
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
			
	);

	$('.mainNav li.level1 ul.menu li').hover(
		function(){
			this.className += " sshover";
		},
		
		function(){
			this.className=this.className.replace(new RegExp(" sshover\\b"), "");
		}
		
	);
	
	
	$('#navStrip ul li').hover(
		function(){
			this.className += " sfhover";

		},
		
		function(){
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
		
	);

})