//Adds better click functionality to the menu:
(function($){
	$(document).ready(function(){
		//Add the hover effect to the li (is already on the span in real browsers)
		$("#menu li span").click(function(){ //now add functionality to move to the page in the first <a> in the children
			document.location = $(this).find("a[href]:first").attr("href");
		}).css("cursor", "pointer");
	});
})(jQuery);
