$(document).ready(function() {
var countryISO = "";
if($.cookie('country_iso').length > 0){
countryISO = $.cookie('country_iso');
}


// assign html you want to appear in each country li below
var liGB = '<div style="height:120px;"><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">Standard</a></div><div style="float:right;padding-right:5px;">&pound;3.95</div></div><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">Next Day</a></div><div style="float:right;padding-right:5px;">&pound;4.95</div></div><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">Saturday</a></div><div style="float:right;padding-right:5px;">&pound;5.95</div></div><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content"><img src="http://media.oasis-stores.com/pws/images/leftnav_freepp.gif" alt="" /></a></div></div></div>';
 
var liIE = '<div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">Ireland</a></div><div style="float:right;padding-right:5px;padding-bottom:20px;">&euro;5.00</div></div><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">Free Returns</a></div><div style="float:right;padding-right:5px;"></div></div>';
 
var liUS = '<div style="height:120px;"><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">USA</a></div><div style="float:right;padding-right:5px;padding-bottom:20px;">$10.00</div></div>';
 
var liOT = '<div style="height:120px;"><div class="delivery"><div style="float:left"><a href="http://www.oasis-stores.com/fcp/content/delivery_options/content">International</a></div><div style="float:right;padding-right:5px;">&euro;10.00</div></div>';
 
// add new countries as required here
switch (countryISO)
{
case 'GB' : $("div.liGB").html(liGB);
break;
case 'IE' : $("div.liIE").html(liIE);
break;
case 'US' : $("div.liUS").html(liUS);
break;
default : $("div.liOT").html(liOT);
break;
}
});
