hash = window.location.hash;
if( hash ){
	if( hash.indexOf('-') != -1 ){
		hash = hash.split('-');
		window.location = 'http://www.mexicoforestal.gob.mx/node/' + hash[1] ;
	}else{
		if( hash.substring(1,5) != 'tema'){
			hash = hash.substring(1);
			window.location = 'http://www.mexicoforestal.gob.mx/regiones/' + hash ;
		}else{
			hash = hash.substring(1);
			window.location = 'http://www.mexicoforestal.gob.mx/' + hash ;
		}
	}
	
}
