$(document).ready(function(){
    
    //HoverSwap functionality
	var hoverSwapArray = new Array();
	
	//Add all the image data here
  hoverSwapArray["navigationHome"] = "/images/global/SanSebastian-grownups-wanted-";
	
	$('.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');
		}
	});
	
});