$(document).ready(function(){
	var urlhash = window.location.hash;
	if(urlhash != ""){
		var valores = urlhash.split('?p=');
		if(valores[1] != undefined){
			var hash = '?p='+valores[1];
		}
	}else {
		
		var hash = '?p=1';
	}
	
});
