<!--
// Set random background image
	$(document).ready(
		function () {
			var currentDate = new Date();
			var img = ( currentDate.getDay() & 3 ) ;
			if ( img == 0 ) img = 2;
			$("body").css("backgroundImage", "url(images/tentwelve_background_" + img + ".jpg)");
		}
	)

// anti-spam email link
	var emailAddress = new String();
	var emailLink = new String();
	var emailCode = new Array(105, 110,102, 111, 64, 116, 101, 110, 116, 119, 101, 108, 118, 101, 46, 99, 111, 109);
	for ( i = 0 ; i < emailCode.length ; i++){
		emailAddress += String.fromCharCode(emailCode[i]);
	}
	emailLink = '<a href="mailto:' + emailAddress + '">' + emailAddress + '</a>';
-->
