$(document).ready(
	function()
	{

		// Makes the nav work in IE6
		$('.mainnav li').hover(
			function () {$(this).addClass("over");},
			function () {$(this).removeClass("over");}
		);


	}
);