$(document).ready(function(){ 
	
	/*
	 * Newsletter Signup
	 */
	$('#newsletter').submit(function() { 
		$('#error').html('<p class="no_margin">Loading...</p>').removeClass('hide');
		$.post(this.action, $('#newsletter').serialize(),
			function(data) {
				if(data.success == 1) {
					$('#newsletter').html(data.result).hide().fadeIn('slow');
				} else {
					$('#error').html(data.result).hide().fadeIn('slow');
				}
			}, 'json'
		);
		return false;
	});
	
	$('#mailing_list_input').focus(function() { 
		if($(this).val() == 'Email Address') {
			$(this).val('');
		}		
	}).blur(function() { 
		if($(this).val() == '') {
			$(this).val('Email Address');
		}
	});
	
});
