/**
	require cookies.js
*/
	function setIntialRefCookie(ref) {
		var expDate2 = new Date();
		expDate2.setMonth(expDate2.getMonth()+1);
		setCookie ('initial_ref', ref, expDate2);
	}
	
	function setPartnerIDCookie(partnerID) {
		var expDate = new Date();
		expDate.setYear(expDate.getYear()+1);
		setCookie ('partnerID', partnerID, expDate);
	}

