$(document).ready(function(){
	
	$(".wpcf7-text").click(function(){
		
	 if(this.value=='Name*')
	 {
		 this.value='';
	 }
	 if(this.value=='Email*')
	 {
		 this.value='';
	 }
	 if(this.value=='Organization*')
	 {
		 this.value='';
	 }
	 if(this.value=='Comments')
	 {
		 this.value='';
	 }
	 /**/
	 
	 
	 
	});
	/**/
	$(".wpcf7-text").blur(function(){
		
	 if(this.value=='')
	 {
		 if(this.name=='your-name')
		 this.value='Name*';
		 if(this.name=='your-email')
		 this.value='Email*';
		 if(this.name=='your-subject')
		 this.value='Organization*';
		 if(this.name=='your-message')
		 this.value='Comments';
	 }
	  
	 
	});
	
});
