$(function () {
	$("input[name='signup']").focus(function () {
		if ($(this).attr('value') == 'Subscribe now...')
		{
			$(this).attr('value', '');
		}
	});
	$("input[name='signup']").blur(function () {
		if ($(this).attr('value') == '')
		{
			$(this).attr('value', 'Subscribe now...');
		}
	});
	
	$("input[name='signup']").parent().submit(function () {
		if ($("input[name='signup']").attr('value') != '' && $("input[name='signup']").attr('value') != 'Subscribe now...')
		{
			temp = $("input[name='signup']").attr('value');			
			$.post('/signup', { signup: temp }, function (data) {
				$.gritter.add({
					title: 'Thank You!',
					text: 'We\'ve added your address to our mailing list.'
				});
			});
		}
		return false;
	});
});