$( function(){
	$('#nav .navButton').hover( function(){
		$(this).css('backgroundColor','#f9b44f').css('color','#00463c').css('fontWeight','bolder').css('cursor','pointer');
	}, function(){
		if( $(this).attr('id') != 'navActive') {	
			$(this).css('backgroundColor','#00463c').css('color','#f9b44f').css('fontWeight','normal');
		}
	});
});

function swapImg(img){
  $('#mainImg').attr('src', img.src);
}

