var mainTitle = '';

function activateHistory(hash) {
	var flash = $('#flashSite').get(0);
	if (flash && flash.jsChangeSection) {
		flash.jsChangeSection(hash);
		
		if (hash != ''){
			// document.title = mainTitle+' // '+String(hash);
			switch (String(hash)){
				case "a-fenomenal":
					document.title = "Fenomenal - Venda e Fabricação de Camisetas | Conheça a Fenomenal";
				break;
				
				case "videos":
					document.title = "Fenomenal - Venda e Fabricação de Camisetas | Assista nossas ofertas!";
				break;
				
				case "localizacao":
					document.title = "Fenomenal - Venda e Fabricação de Camisetas | Nossa localização";
				break;
				
				case "contato":
					document.title = "Fenomenal - Venda e Fabricação de Camisetas | Entre em contato com a gente!";
				break;
				
				default:
					document.title = "Fenomenal - Venda e Fabricação de Camisetas | Se é Fenomenal, a malha é boa!";
				break;
			}
		}
		
		pageTracker._trackPageview(hash);
	}
}

function change(hash){
	$.historyLoad(hash);
	return false;
}

function flashInit(){
	mainTitle = String(document.title);
	$.historyInit(activateHistory);	
}