// <![CDATA[
$(function() {
   	$('#homeFeature nav ul li:first-child a').addClass('current');
	$('#homeFeature nav ul li').click(
		function(){
			// get the index and the border color
			var borderColor; 
			var switchCase = $(this).index();
			switch(switchCase) { 
				case 2: borderColor = "#FFA600"; break;
				case 1: borderColor = "#CB1C6E"; break;
				case 0: borderColor = "#009BBF"; break;
				default:borderColor = "#009BBF";
			}			
			// add current
			$('#homeFeature nav ul li a').removeClass('current');
			$(this).children('a').addClass('current');
			// change the image, border-top and aside content				
			$('body header:first-child').css('background-image',  'url("/wp-content/themes/wano/assets/images/_layout/headerImages/image'+switchCase+'.jpg")');
			$('#homeFeature nav').css('border-top-color', borderColor );
			$('#homeFeature aside').hide().eq(switchCase).show();
		}
	);		   
});
// ]]>

