$(document).ready(function() {
var countryISO = "";
if($.cookie('country_iso').length > 0){
countryISO = $.cookie('country_iso');
}
 
var US_cards = '<img src="/pws/images/xmas09/footer/cards2_us.gif" alt="We accept these payment methods" />';
var OT_cards = '<img src="/pws/images/xmas09/footer/cards2.gif" alt="We accept these payment methods" />';
 
switch (countryISO)
{
case 'US' : $("div.US_cards").html(US_cards);
break;
default : $("div.OT_cards").html(OT_cards);
break;
}
});

