



$(function() {

	
		$('#buttonSubmit').hover(
		function() {
			$(this).attr('src', 'images/btn_submit_roll.jpg');
		},
		function() {
			$(this).attr('src', 'images/btn_submit.jpg');
		}	
	);

	$('#newsletter').focus(function() {
			this.value = ''; 
	});
		
		
	  /*	
	  $('#buttonSubmit').click(function(e) {
		e.preventDefault();
		window.location = 'index_thankyou.html';
	});
	  */
						
	 
});


