if (getGenderCookie() == "mens") {
$("a#new-page-link").attr("href", "http://stage.matches.fresca.co.uk/fcp/content/Delivery/content").html("View Mens");         
}

// fix multicurrency not displaying when free delivery is applied
function fixMultiCurrency(){
	if ($("body").hasClass("Basketice") || $("body").hasClass("loginregisterlayout") || $("body").hasClass("paymentdetailslayout") || $("body").hasClass("selectaddresseslayout")) {
		
		var $ordTotalsFreeDelivery = $("#ordTotals .freeDelivery");
		if($("#ordTotals .freeDelivery").length){
			var $totalPrice = $("#ordTotals .titles").eq(3).find(".totalPrice");
			
			// strong tag is used by JavaScript selector but does not appear
			// when free delivery is applied. add it and re-run
			if($totalPrice.html().indexOf("strong") == -1){
				$totalPrice.wrapInner("<strong />");			
				displayMultiCurrency();
			}
		}
	}
}

$(document).ready(
	function (){
		fixMultiCurrency();
	}
);
