
function injectContent(i){
	$("#cp_display").load("/?mp=html&html=fragment-cp_content_xmlhttp&item=" + i);
}


$(document).ready(function() {

	$('#cp_menu li a').click(function(){
		$('#cp_menu li.on').removeClass('on');
		$(this).parent().addClass('on');
		
		// Find the ND from the list item's URL
		var tmp = this.href.split("nd=");
		nd = tmp[tmp.length-1];

		injectContent(nd);
		return false;
	});

	// Turn on the first item by default
	$('#cp_menu li:first a').click();

	// Launch slideshow
	$('#photo').cycle({ 
	    fx:    'fade', 
	    speed:  1000,
		timeout: 6000
	 });

});
