$(document).ready(
	function()
	{
		// Makes the nav work in IE6
		
		$("#nav li").hover(
			function() {
				$(this).addClass("over");
				
			},
			function() {
				$(this).removeClass("over");
			}
		);
			
		$("#navinternal li").hover(
			function() {
				$(this).addClass("over");
				
			},
			function() {
				$(this).removeClass("over");
			}
		);
		
	}
);