$(document).ready(function() {	
	$('input[type="text"], textarea').focus(function() {
       	if (this.value == this.defaultValue){ 
    		this.value = '';
		}
		if(this.value != this.defaultValue){
	    	this.select();
	    }
    });
	
    $('input[type="text"], textarea').blur(function() {
    	if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
    });
	$('input[type="submit"]').click(function() {
		if (document.getElementById('ContactName').value == document.getElementById('ContactName').defaultValue)
			document.getElementById('ContactName').value = '';
		if (document.getElementById('ContactEmail').value == document.getElementById('ContactEmail').defaultValue)
			document.getElementById('ContactEmail').value = '';
		if (document.getElementById('ContactPhone').value == document.getElementById('ContactPhone').defaultValue)
			document.getElementById('ContactPhone').value = '';
		if (document.getElementById('ContactCompany').value == document.getElementById('ContactCompany').defaultValue)
			document.getElementById('ContactCompany').value = '';
		if (document.getElementById('ContactMessage').value == document.getElementById('ContactMessage').defaultValue)
			document.getElementById('ContactMessage').value = '';
	});
});
