/* 
* JavaScript Document
* welshsupercup.com
* jquery.onload.newsletter.js
* 
* newsletter/js/jquery.onload.newsletter.js
* 
* Author    :   Greg Merriman
* Copyright :   Copyright 2009 (c) Team Tours Direct Ltd
* Created   :   Tue 01 Dec 2009
* Modified  :   Tue 01 Dec 2009
* 
*/

 
// When the DOM is ready...
$(function(){

	var title = $("#signup input#email").attr('title');
	//set value of text box
	$("#signup input#email").val(title);
	
	//reset value on click
	$("#signup input#email").click(function(){
		$("#signup input#email").val("");
	});
	
	$('#newsletter form').submit(function () {
		// optional: replace "form" with whatever CSS selector you want (ex: ID or class)
		$('form', this).replaceWith('<p><em>Sending your request...</em></p>');
	});

});