$.address.change(function(event) {  
    // do something depending on the event.value property, e.g.  
    if(event.value == "/soul"){
		site.location.href = "http://www.souldigital.com.br"
	} else if(event.value != "/"){
		site.location.href = event.value+".php"
	} else {
		site.location.href = "home.php"
	}
});
