$(document).ready(function(){	// control hover in/out fade speed	var hoverSpeed = 300;	attachNavEvents("div.region div.button", "#header div.buttons div.menu");	attachHovers("div.sector-list ul");	function attachNavEvents(source, target) {		$(source).click(function() {			$("body").click(function() {				$(target).fadeOut(hoverSpeed / 2);			});			$(target).fadeIn(hoverSpeed).click(function() {				$(this).fadeOut(hoverSpeed / 2);			});			return false;		});	}	function attachHovers(source) {		$(source + " li").mouseover(function() {			// deselect all lis			$(source).children("li").removeClass("selected");			// change the home page image			var matchingImage = $(this).attr("data-titleImage");			$("div.lead-image img").attr("src", matchingImage);						// add the selected class to the one being hovered			if (!($(this).hasClass("selected"))) {				$(this).addClass("selected");			}		}).mouseout(function() {			// deselect all lis			$(source).children("li").removeClass("selected");			// change the home page image			$("div.lead-image img").attr("src", "http://pacnetservices.com/i/photos/homepage-hands-globe.jpg");		});	}});