function inUS () {
if (typeof geoip_country_code == 'function') {
if (geoip_country_code() == 'US') {
document.getElementById('promo_box').innerHTML = 'Free shipping on 4 or more Kikbos! <a class="fancy_iframe" title="The Official Kikbo Commercial" href="http://www.youtube.com/embed/vomVctrvuSU?autoplay=1"> Watch the Kikbo Video</a>!';
}
else {
document.getElementById('promo_box').innerHTML = 'Int\'l shipping on 4 or more Kikbos only $1! <a class="fancy_iframe" title="The Official Kikbo Commercial" href="http://www.youtube.com/embed/vomVctrvuSU?autoplay=1"> Watch the Kikbo Video</a>!';
}
}
else {
document.getElementById('promo_box').innerHTML = 'Free shipping on 4 or more Kikbos! <a class="fancy_iframe" title="The Official Kikbo Commercial" href="http://www.youtube.com/embed/vomVctrvuSU?autoplay=1"> Watch the Kikbo Video</a>!';
}
}

inUS();
