function resizeImage()
{
	var $image = $('#background-image'),
		$window = $(window),
		$page = $('#page'),
		height = $page.height() > $window.height() ? $page.height() + 35 : $window.height();

	$image.height(height);
}

$(document).ready(function()
{
	$('#list-emailaddress').focus(function() {
		if ($(this).val() == 'YOUR EMAIL ADDRESS') {
			$(this).val('');
		}
	}).blur(function() {
		if ($(this).val() == '') {
			$(this).val('YOUR EMAIL ADDRESS');
		}
	});

	$('#background-image').show();
	if (jQuery.browser.mozilla != null && jQuery.browser.mozilla == true) {
		$('#background-image').show();
	}

	$('#background-image').load(function()
	{
		var $page = $('#page');
		var $window = $(window);
		var height = $page.height() > $window.height() ? $page.height() + 35 : $window.height();
		$(this).height(height).show();
		$window.resize(resizeImage);
	})
});
