// JavaScript Document

$(document).ready(function(){
						   
	
	$('#MERGE1').focus(function() {
		$(this).val($(this).val().toLowerCase() == 'your name' ? '' : $(this).val()) ;
	}) ;

	$('#MERGE1').blur(function () {
		$(this).val($(this).val().toLowerCase() == '' ? 'Your Name' : $(this).val()) ;
	}) ;


	$('#MERGE0').focus(function() {
		$(this).val($(this).val().toLowerCase() == 'your email' ? '' : $(this).val()) ;
	}) ;

	$('#MERGE0').blur(function () {
		$(this).val($(this).val().toLowerCase() == '' ? 'Your Email' : $(this).val()) ;
	}) ;

}) ;
