/*****************************************************
*** HISTORY ******************************************
*****************************************************/

/*Jean
 * Altera o Background da página
 * */
function mudaBackground(bg)
{
	if((bg=='main')||(bg=='agenda')||(bg=='noticias')||(bg=='fa-clube')||(bg=='galeria')||(bg=='mural')||(bg=='downloads')||(bg=='historico')||(bg=='contato'))
		document.getElementById('bg-home').className = 'bg-'+bg;
	else		
		document.getElementById('bg-home').className = 'bg-main';
}

function pageload(hash) {
				
	if(hash) {
		
		//url >> #pagina/div/id/parametros
		tmp = hash.split("/");
		hash = tmp[0];
		
		var indice = "";														
		var div = "";					
		var parametros = "";					
		
		if(tmp[1]!='' && tmp[1]!=undefined) div = tmp[1];
		if(tmp[2]!='' && tmp[2]!=undefined) indice = tmp[2];
		if(tmp[3]!='' && tmp[3]!=undefined) parametros = tmp[3];
		
		
		if(div=='' || div==undefined) div = "conteudo";
		
		var url = hash + ".php?" + parametros;
	
		$('#'+div).load(url,{id:indice},function(){setTimeout('Shadowbox.clearCache();Shadowbox.setup();',100);});							
		
	}else{				
		$('#conteudo').load('main.php');		
	}
	var bg = hash;
	mudaBackground(bg);//Altera background para o site do Luiz Fernando e Zé Miguel. - Jean
}



$(function(){			
	// Initialize history plugin.
	// The callback is called at once by present location.hash. 
	$.historyInit(pageload);
	
	// set onlick event for buttons
	/*$("a[rel='history']").click(function(){
		// 
		chamaPagina(this.href)
		
	});*/
	
	$("#load").ajaxStart(function(){
        $(this).fadeIn('fast');	
        $("#conteudo").show();	            
    });
    $("#load").ajaxStop(function(){
        $(this).fadeOut('slow');		            
        $("#conteudo").show();
    });			
});		

function chamaPagina(hash){
	hash = hash.replace(/^.*#/, '');
	// moves to a new page. 
	// pageload is called at once. 
	$.historyLoad(hash);
	
	//alert(hash);
	//COLOCA A PAGINA NO TITULO DO BROWNSER	
	var tit = hash;	
	if(tit=='faclube'){tit = "fa clube";}
	else if(tit=='galeria'){ tit="fotos";}
	else if(tit=='galeria///gal=videos'){ tit="videos";}
	else{
		tmp = tit.split("/");
		if(tmp[0]=="discografia-album"){ tit = "discografia";} 
		else if(tmp[0]=="galeria-fotos"){ tit = "fotos";} 
		else if(tmp[0]=="downloads"){ tit = "downloads";} 
	}	
	document.title=tituloSite + ' ' + tit.toUpperCase() + ' ::';
		
	return false;				
}

/*****************************************************
*** FIM - HISTORY ************************************
*****************************************************/
