// JavaScript Document// Click anywhere in the menu item to go to link// Do not use in pages with activatedlogo.js$(document).ready(function(){makeMenuLinks();});		function makeMenuLinks() {	var menuItems = $('#feature-menu ul li'); // 	$(menuItems).mouseover(function(){		$(this).css({'cursor':'pointer'}); 	});	$(menuItems).mouseout(function(){		$(this).css({'cursor':'auto'}); 	});	$(menuItems).click(		function(event) {		var theURL = $(this).find('a').attr("href"); 		var theTarget = $(this).find('a').attr("target").toLowerCase(); 				if (theTarget != '_blank'){	window.location = theURL;} //load in current window		else {window.open(theURL,'_blank'); event.preventDefault();} //load in new window	});};
