var Constants = {}
Constants = new Class(Constants);
Constants.IS_REMOTE=true;
Constants.DEFAULT_LOCAL_ROOT/*String*/ = "/labz/pousadaacapulco.net/frontend/";
Constants.DEFAULT_REMOTE_ROOT/*String*/ = "http://pousadaacapulco.net/";

Constants.path = function(path/*String*/)/*String*/{
	
	var host = window.location.host;
	//alert(host);
	if(host.indexOf("www.pousadaacapulco") >=0  && Constants.DEFAULT_REMOTE_ROOT.indexOf("www.pousadaacapulco")<0){
		Constants.DEFAULT_REMOTE_ROOT = Constants.DEFAULT_REMOTE_ROOT.replace("pousadaacapulco.net","www.pousadaacapulco.net");
	}
	
	//alert(Constants.DEFAULT_REMOTE_ROOT);
	
	if(!Constants.IS_REMOTE)
		return Constants.DEFAULT_LOCAL_ROOT+path;
	else
		return Constants.DEFAULT_REMOTE_ROOT+path;
}


