function geoIPfinder(){
	var url = "http://www.geoplugin.net/json.gp?jsoncallback=?";
	$.getJSON(url,function(data){
		if(data!=undefined && data!=null && data.geoplugin_countryName){
			var country = data.geoplugin_countryCode;
			if (country == 'US')
			{
				window.location = 'http://www.wilier-usa.com/en/';
			}
		}
	});
}

function geo(){
	var url = "http://www.geoplugin.net/json.gp?jsoncallback=?";
	$.getJSON(url,function(data){
		if(data!=undefined && data!=null && data.geoplugin_countryName){
			var country = data.geoplugin_countryCode;
			return country;
		}
	});
}
