// jQuery code for all pages

jQuery(function($){
	shortcut.add("Control+Shift+A",function() {window.location = '/admin';});
	//$('#nav li a').hover(
	//	function() {
	//		var width = $(this).width();
	 //   	var offset = $(this).offset();
	 //   	var xint = (80 - width) / 2;
	 //   	//if (xint < 0) { xint = xint * -1; }
	 //   	offset = (offset.left - 27 - xint);
	 //   	$('#nav-hilite').css({ 'left' : offset + 'px' }).fadeIn('fast');
	//	},
	//	function() {
	//		$('#nav-hilite').hide();
	//	}		
	//);
	
	$('.col a img[alt=1. My Health]').hover(function(){$(this).attr('src','/images/1-my-health-over.png');},function(){$(this).attr('src','/images/1-my-health.png');});
	$('.col a img[alt=2. My Wealth]').hover(function(){$(this).attr('src','/images/2-my-wealth-over.png');},function(){$(this).attr('src','/images/2-my-wealth.png');});
	$('.col a img[alt=3. My Choice]').hover(function(){$(this).attr('src','/images/3-my-choice-over.png');},function(){$(this).attr('src','/images/3-my-choice.png');});

});
