var oldPage = 'home';
$(function()
{
	$(".bg-black").css({ opacity: 0.85 });
	$(".bg-orchestra").css({ opacity: 0.90 });
	$("#menu a").click(function(event){
		$("#menu a").attr('class','');
		$(this).attr('class','active');
		gotoPage($(this).attr('rel'));
	});
	
	$("#menu a[rel^='prettyPhoto']").prettyPhoto(
	{
		animation_speed:'fast',
		slideshow:5000,
		hideflash: true,
		social_tools:""
	});
		
	$(".mp3").jmp3({
				filepath: BASE_URL+"uploads/mp3/",
				backcolor : "D7B40B"
	});
	
	$(".link-overlay[rel]").overlay({effect: 'apple'});

});

function gotoPage(page)
{
	if(page != oldPage && page !="prettyPhoto[gallery]")
	{
		$('.'+oldPage).hide();
		$('.'+page).fadeIn();
		oldPage = page;
	}	
}









