(function($){  
	$(document).ready(function() {
		var imgPath = "/Portals/0/images/";
		
		$('#jq-circle area').live('mouseenter mouseleave', function(event) {
			mylink = getLink(event);
			if (event.type == 'mouseenter') {
				imgMapHover(mylink);	
			}else {
				imgMapHover('default');	
			}
		});
							   
			
		function getLink(e) {
			var splitLink = $(e.target).attr('href');
	
			if(splitLink){
				if(splitLink.indexOf('.com') > 0) {
					splitLink = splitLink.split('.com');
					mylink = splitLink[0];
					return mylink;
				} else {
					return splitLink;
				}
			}
		}
		
		
		function imgMapHover(mylink) {	
			switch (mylink) {
				case '/tabid/440/default.aspx':
					//Fundraising
					$('#jq-circle img').attr('src', imgPath + 'pik_fundraising_circle.png');
					break;
				case '/tabid/856/default.aspx':
					//Leadership
					$('#jq-circle img').attr('src', imgPath + 'pik_leadership_circle.png');
					break;						
				case '/tabid/344/default.aspx':
					//Grantmaking
					$('#jq-circle img').attr('src', imgPath + 'pik_grantmaking_circle.png');
					break;						
				case 'default':
					$('#jq-circle img').attr('src', imgPath + 'pik_strategy_circle.png');
					break;
			}
		}
	});  
})(jQuery);  


