$(document).ready(function(){
    
    //HoverSwap functionality
	var hoverSwapArray = new Array();
	
	//Add all the image data here
	hoverSwapArray["navigationOurFirm"] = "/images/global/nav-OurFirm-";
	hoverSwapArray["navigationPractices"] = "/images/global/nav-Practices-";
	hoverSwapArray["navigationAttorneys"] = "/images/global/nav-Attorneys-";
	hoverSwapArray["navigationMediaCenter"] = "/images/global/nav-MediaCenter-";
	hoverSwapArray["navigationJoinOurTeam"] = "/images/global/nav-JoinOurTeam-";
	hoverSwapArray["navigationOffices"] = "/images/global/nav-Offices-";
	hoverSwapArray["navigationContactUs"] = "/images/global/nav-ContactUs-";
	hoverSwapArray["subNavSubscribe"] = "/images/global/subnav-SubscribeToOurPodcasts-";
	hoverSwapArray["subNavComments"] = "/images/global/subnav-ShareYourComments-";
	
	$('.hoverSwap').mouseover(function(){	
		if ($(this).attr('src') != hoverSwapArray[$(this).attr('id')] + 'active.gif')
		{
			$(this).attr('src', hoverSwapArray[$(this).attr('id')] + 'on.gif');
		}
	});
	
	$('.hoverSwap').mouseout(function(){
		if ($(this).attr('src') == hoverSwapArray[$(this).attr('id')] + 'on.gif')
		{
			$(this).attr('src', hoverSwapArray[$(this).attr('id')] + 'off.gif');
		}
	});
	
});