ObjUrl = function(){	this.url = "";};
ObjUrl.prototype.getUrl = function() {
	 var string = this.VerificaString(location.href, 'localhost');	 	 if (string == false){		this.url = 'http://www.contato.cc/site/';	 } else {		this.url = 'http://localhost/sitecontato/public/';	 }
};ObjUrl.prototype.VerificaString = function(haystack, needle, bool){	var pos = 0;	 	haystack += '';	pos = haystack.toLowerCase().indexOf( (needle+'').toLowerCase() );	if (pos == -1){		return false;	} else{		if (bool) {			return haystack.substr( 0, pos );		} else{			return haystack.slice( pos );		}	}};
