/***
	Created by: Colin Kirsopp
	Needs jquery library to be loaded before this
	Needs cputils loaded before this
***/

var multiCard = {currency: 'MUL', paymentCurrency: 'GBP', fxrate: 1.0, comparisons:null };
var usdollarCard = {currency: 'USD', paymentCurrency: 'GBP', fxrate: 1.0, comparisons:null };
var euroCard = {currency: 'EUR', paymentCurrency: 'GBP', fxrate: 1.0,  comparisons:null };

// once DOM model loaded
$(document).ready(function() {

	setInitialCookies();
	$('.offer').val(getCurrentOffer());
	$('.refcode').val(getRefcode());
	
});

