$(document).ready(function() {
	$('input[name=Email Address]').each(function() {
		$(this).val('Enter your email address').attr('color', $(this).css('color'));
	}).focus(function() {
		if (($(this).val() == 'Enter your email address') || ($(this).val() == 'Invalid Email Address'))
		{
			$(this).val('').css({
				color:$(this).attr('color'),
				fontWeight:'normal',
				borderColor:'#7b7b7b'
			});
		}
	}).blur(function() {
		if (!$(this).val())
		{
			$(this).val('Enter your email address').css({
				color:$(this).attr('color'),
				fontWeight:'normal',
				borderColor:'#7b7b7b'
			});
		}
	}).parents('form').submit(function() {
		if (!$(this).find('input[name=Email Address]').val().match(/.*?\@.*?\..*/))
		{
			$(this).find('input[name=Email Address]').blur().val('Invalid Email Address').ianimate({
				color:'#ff0000',
				fontWeight:'bold',
				borderColor: '#ff0000'
			}, 250, 'linear', function() {
				$(this).ianimate({
					color:'#800000'
				}, 250, 'linear', function() {
					$(this).ianimate({
						color:'#ff0000'
					}, 250, 'linear');
				});
			});
			return false;
		}
	});
});
