jQuery(document).ready(function() { 
	$("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" });
	$("#northAmericaRegion").mouseover(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMapNA.gif" }); });
	$("#northAmericaRegion").mouseout(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" }); });
	$("#southAmericaRegion").mouseover(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMapSA.gif" }); });
	$("#southAmericaRegion").mouseout(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" }); });
	$("#australiaRegion").mouseover(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMapAU.gif" }); }); 
	$("#australiaRegion").mouseout(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" }); });
	$("#africaRegion").mouseover(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMapAF.gif" }); });
	$("#africaRegion").mouseout(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" }); });
	$("#asiaRegion").mouseover(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMapAA.gif" }); }); 
	$("#asiaRegion").mouseout(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" }); });
	$("#europeRegion").mouseover(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMapEU.gif" }); }); 
	$("#europeRegion").mouseout(function() { $("img#representativeMap").attr({ src: "/imgs/contactRepMap.gif" }); });
});
