
if (isIE) {
	window.setTimeout(function() {
		document.getElementById('mailinglist').getElementsByTagName('INPUT')[0].value = '';
	}, 1000);
}
function mail_focus(el)
{
	el.className = 'focussed';
	el.value = '';
}

function mail_blur(el)
{
	if (!el.value.replace(/\s+/, '').length) {
		el.className = '';
		el.value = 'Your email here';
	}
}

function mailinglist_clientjs()
{
}
