// JavaScript Document
$(document).ready(function(){  
    
	$(".contact").focus(function(){
	
		$(this).val('');
		
	})
	
}); 
