$(document).ready(
	function()
	{
		$(':input').focus(
			function()
			{
				$(this).parent().addClass('focus')

				if ($(this).val() == 'Your email address...' || $(this).val() == 'Your message...')
				{
					$(this).val('');
				}
			}
		);
		$(':input').blur(
			function()
			{
				$(this).parent().removeClass('focus');
			}
		);
	}
);
