// enquiryOptions.js
function isSkuURL() {
	if (document.URL.indexOf("/sku/") > 0) {
		return true;
	} else {
		return false;
	}
}

$(document).ready(function(){
	if(isSkuURL()){
		$("#makeGeneralEnquiry").hide();
	}
	$("#phoneAccord").load("/wcsstore/ConsumerDirectStorefrontAssetStore/scripts/phone.html", function() {
		document.getElementById("phoneBtn").style.backgroundPosition="10px -30px";
		
		//world-travel - tourism media 
		//please see /scripts/tmtracking.js	
		if(withinThreeClicks()) {			
			$("#accordionPhone").html("1300 411 560");
		}
	});
	
	//ajaxForm for enquiry is in the email_general.html file.
	$("#emailAccord").load("/wcsstore/ConsumerDirectStorefrontAssetStore/scripts/email_general.html");
	
	//Send to friend ajax submit 
	$('#sendToFriendform').ajaxForm(function() { 
		 $("#sendAccord").html("<p><strong>An email has successfully been sent to your friend.</strong></p>");
	}); 
});


