function init() {
	// hideCheckoutOptions();
}

/*function addEmailAddresses() {
	var e3 = "u.com";
	var e2 = "o@bombsintoyo";
	var e1 = "inf";
	var ea = e1+e2+e3;
	
	document.getElementById('contact').href = 'mailto:' + ea;
	
	var v = document.createTextNode(ea);
	document.getElementById('contactEmail').appendChild(v);
}*/

/*function back() {
	history.go(-1);
	return false;
}*/

/*function hideCheckoutOptions() {

	var sc = document.getElementById('wpsc_shopping_cart_container');
	if (sc != null) {
		var firstTable = true;	 // we want to only get rid of the first table, so this ticks to true when that happens
		for (var i=0; i<sc.childNodes.length; i++) {
			var nd = sc.childNodes[i];
			
			if (nd.nodeName == "H2") {
				sc.removeChild(nd);
			}
			
			if (nd.nodeName == "TABLE" && firstTable) {
				sc.removeChild(nd);
				firstTable = false;
			}
			
			if (nd.nodeName == "FORM") {
				nd.removeChild(nd.firstChild);
				nd.removeChild(nd.firstChild);
				nd.removeChild(nd.firstChild);
			}
		}
	}
}*/