function resizeBackground() {
	$('#bg').css('margin-top', Math.min(0, $(document.body).height() - $('#bg img').height()) + 'px');
}

$(window).load(resizeBackground);
$(window).resize(resizeBackground);

$(function() {
	$('#mlist').show().append($(document.createElement('div')).addClass('placeholder').html('enter your e-mail address').click(function() {
		$(this).hide();
		document.getElementById('mlist-form').elements['EMAIL'].focus();
	}));
	$('#mlist-form input').blur(function() {
		if (this.value.length == 0) {
			$('#mlist .submit').hide();
			$('#mlist .placeholder').show();
		}
	});
});

function subscribeSubmit(p_objForm) {
	setTimeout(function() {
		p_objForm.elements['EMAIL'].value = '';
		$(p_objForm.elements['EMAIL']).blur();
	}, 250);
}
