// JavaScript Document
	<!--
			$(document).ready(function () {
				$.getJSON("/cgi-bin/store_rpc.cgi?action=geo_location", function (data) {
					var d = data.geo_location;
					var err = data.error ? data.error : d.error;
					if (err) {
						alert("Error: " + err.message);
						return;
					}
					var str = '';
					str += 'code: ' + d.results.country_code + "\n"
						+ 'code3: ' + d.results.country_code3 + "\n"
						+ 'name: ' + d.results.country_name + "\n";
					//alert(str);
					
					//If you are in the US:
					if (d.results.country_name == "United States") 
					{$("#shipping").html('<a href="/Questions.htm#shipping" target="_blank"><img src="/images2/Special/Free_Shipping-sb.jpg" alt="Free Shipping Over $59!" class="LeftFloat" style="padding-left:15px;"></a>');
					
					}
					
					//If you are not in the US:
					else
					{$("#shipping").html('<a href="/International_Shipping.htm" target="_blank"><img src="/images2/head/International.jpg" alt="We ship International!" class="LeftFloat"></a>');
				
					}
				});
			});
			// --> 