// When the DOM is ready
$(function() {
	var dateLink = $('.time-meta a');
	$(dateLink).removeAttr('href');
})



// IE NAVIGATION COLORS
$(function(){
	if($.browser.msie){
		$('li.menu-item:nth-child(1) a').css('background-color','#d92424');
		$('li.menu-item:nth-child(2) a').css('background-color','#d92424');
		$('li.menu-item:nth-child(3) a').css('background-color','#d92424');
		$('li.menu-item:nth-child(4) a').css('background-color','#d92424');
		
		$('li.menu-item:nth-child(1) a').hover(
			function(){$(this).css('background-color','#666666')},
			function(){$(this).css('background-color','#d92424')}
		);
		$('li.menu-item:nth-child(2) a').hover(
			function(){$(this).css('background-color','#666666')},
			function(){$(this).css('background-color','#d92424')}
		);
		$('li.menu-item:nth-child(3) a').hover(
			function(){$(this).css('background-color','#666666')},
			function(){$(this).css('background-color','#d92424')}
		);
		$('li.menu-item:nth-child(4) a').hover(
			function(){$(this).css('background-color','#666666')},
			function(){$(this).css('background-color','#d92424')}
		);
	}
});


// Home page slide show
$(function() {
	// create the image rotator
	setInterval("rotateImages()", 7000);
});

function rotateImages() {
	var oCurPhoto = $('#photoShow div.current');
	var oNxtPhoto = oCurPhoto.next();
	if (oNxtPhoto.length == 0)
		oNxtPhoto = $('#photoShow div:first');

	oCurPhoto.removeClass('current').addClass('previous');
	oNxtPhoto.css({ opacity: 0.0 }).addClass('current').animate({ opacity: 1.0 }, 1000,
		function() {
			oCurPhoto.removeClass('previous');
		});
}

