// JavaScript / jQuery for the menu hovers
$(document).ready(function(){
	$("#menu li").hover(
		function() {
			$(this).addClass('over');
		},
		function()	{
			$(this).removeClass('over');
	});
});
