function geolocate(timezone, cityPrecision) {
  var key = '37c676019306bf286e20d5cf668e7a823e6faf7658767f8e0f9d5fc4032442c7';
  var api = (cityPrecision) ? "ip_query.php" : "ip_query_country.php";
  var domain = 'api.ipinfodb.com';
  var version = 'v2';
  var url = "http://" + domain + "/" + version + "/" + api + "?key=" + key + "&output=json" + ((timezone) ? "&timezone=true" : "&timezone=false" ) + "&callback=?";
  var geodata;
  var JSON = JSON || {};
  
  function getGeolocation(callback) {
    try {
      $.getJSON(url,
      function(data){
        if (data['Status'] == 'OK') {
          geodata = data;
          $('#Country').val(data.CountryName);
			 $('#City').val(data.City);			 
        }
      });
    } catch(err) {}
  }

getGeolocation();
  
}

$(document).ready(function() {
	$('#eh').html("<a href=\"mailto:info@subexotic.com\">info@subexotic.com</a>");	
	if ($('#page_thankyou').length == 0) {
		var visitorGeolocation = new geolocate(false, true);	
	}
	$('#slideshow_dan_seville').cycle({ fx: 'fade', delay: 1000, speed:  4000 });
	
	$('ul.submenu li').each(function(index) {
	  otherindex = $('ul.submenu li').length - 1;	
	  if (index != otherindex) {
	  	$(this).append('&nbsp;&nbsp;//&nbsp;&nbsp;'); 	
	  }	
	});
});
