function switchContent(id){
	$(".section[id!='"+id+"']").hide();
	$('#'+id).show();
}

$(function(){
	$('#subnav .lightbox').lightBox();

	$("#carousel").jCarouselLite({
		btnNext: "#next",
		btnPrev: "#prev",
		circular: false
	});
	
	switchContent(section);
	
 
});