var email = 'lsm';
email += '@';
email += 'leisuresuit.net';

function e() {
	document.write('<a href="mailto:'+email+'">');
	document.write(email);
	document.write('</a>');
}

$(document).ready(function() {
	$('#lsm').height($(document).height());
	var leftMargin = ($(document).width() - 800)/2;
	$('#lsm').css({'margin-left':leftMargin});
})

$(window).resize(function() {
	$('#lsm').height($(document).height());
});
