$(function(){

	$(".clearonfocus").each(function(){
		
		$(this).attr("rel", $(this).val());
		$(this).bind('focus', function() {
			$(this).attr("value", "");

		});

		$(this).bind('blur', function() {
			if(!$(this).val())
				$(this).attr("value", $(this).attr("rel"));
		});

	});
	
	$('#csend-btn').bind('click', function() {
			if($('#name').val() != $('#name').attr('rel') && $('#msg').val() != $('#msg').attr('rel') && $('#email').val() != $('#email').attr('rel'))
				$('#cform').submit();
			else
				alert('Enter all fields!');
		});

});
