

	$(document).ready(function(){

		

		$.historyInit(pageload);



	});

	

var vetor;
var hash;
var novo;
var browser;
var ver;
var thestart;
var brow_ver;

function carreganocentro(url){

		browser = navigator.appName;
		ver = navigator.appVersion;
		thestart = parseFloat(ver.indexOf("MSIE"))+1;
		brow_ver = parseFloat(ver.substring(thestart+4,thestart+7));

		if ((browser=="Microsoft Internet Explorer") && (brow_ver < 7)  ){
			if(url == "home.php"){
			    location.href = "index.php";
			}
			else{
				carrega(url);
			}
		}
		else{

			vetor = url.split('.');

			hash = vetor[0].replace(/^.*#/, '');

	   		 mudartitulo(hash);

			$.historyLoad(hash);
	
		}

	

}



function pageload(hash) {

		

		if(hash) {

			$("#geral").load(hash + "." + vetor[1]);

		}

	}

	

	

function mudartitulo(nome){

           novo = "";

           switch(nome){

               case "minhahist":

                   novo = "MINHA HISTORIA";

               break;

               case "histtatuagem":

                   novo = "HISTORIA DA TATUAGEM";

               break;

			   case "top":

                   novo = "TOP MODEL";

               break;

               case "tattoos":

                    novo = "TATTOOS";

               break;

               case "parceiros":

                   novo = "PARCEIROS";

               break;

               case "contato":

                   novo = "CONTATO";

               break;

               default:;



           }



           window.parent.document.title = novo + " - Dani Tattoo";

 }
 
 
 
 function carrega(url){
	   $.get( url, function(data){
            var $lista;
			  $lista = $("#geral");
              $lista.html(data);
       }); 
}



	


