
var Holly = {
	init: function(){
		Holly.setups();
		//Holly.sIFRise();
		Holly.rewriteLinks();
		if ($('continue')) Holly.signPopup();
	},
	setups: function(){
		//if (document.referrer.indexOf('hollytrail') < 0) location.reload(true);
		if ($('side').getStyle('height').toInt() < 300) $('side').setStyle('height', '200px');
		if ($('side').getStyle('height').toInt() < $('food').getStyle('height').toInt()) $('side').setStyle('height', $('food').getStyle('height').toInt() + 'px');
	},
	rewriteLinks: function(){
		var a = $$('a');

		for (var i=0; i < a.length; i++) {
			if (a[i].rel == 'external') a[i].target = '_blank';
		}
	},
	sIFRise: function(){
/*
		Help me 'member all the params

		new moosIFR("body h1", {
			"flashsrc": "arial.swf",
			"flashvars": "textalign=center&offsetTop=6",
			"bgcolor": "#FFFFFF",
			"textcolor": "#000000",
			"linkcolor": "#000000",
			"hovercolor": "#CCCCCC",
			"paddingtop": "20",
			"paddingbottom": "20",
			"wmode": "transparent"
		});
*/
		new moosIFR("#food h2.sifr", {
			"case": "upper",
			"bgcolor": "#560713",
			"textcolor": "#e8e2c8",
			"flashsrc": "assets/flash/trajan.swf"
		});
	},
	signPopup : function(){
		$('continue').addEvent('click', function(){
			if (/^[^\s()<>@,;:\/]+@\w[\w\.-]+\.[a-z]{2,}$/i.test($('email').value)) {
				popUp('http://send.creativeweb.co.nz/signup.php?cd=48092&ld=22&email=' + $('email').value)
			}
			else {
				alert('Please enter a valid email address to continue.');
				$('email').focus();
				$('email').select();
			}
		});
	}
};

window.addEvent('domready', Holly.init);

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=400');");
	return false;
}

