// JavaScript Document
$(document).ready(function() {
	$("a[rel='external']").click(function() {
		return !window.open($(this).attr("href"));
	});
});

function applyCoupon(coupon){
	$.ajax({
		type: "POST",
		url: 'assets/templates/usdrinks/ajax/applyCoupon.php',
		data: ({code : coupon}),
		success: function(msg) {
			res = msg.split("|");
			if(res[0]){
				$('#total').html(res[2]);
			}
			$('#couponResult').html(res[1]);
		}
	});
}