$(document).ready(function () {

	//For Callback Form on Homepage
	$("#callback_form #fullname").click(function() {
		if ($(this).val() == 'Enter your full name..') {
			$(this).css('color', '#414e64');
			$(this).val('');
		}
	});
	$("#callback_form #fullname").blur(function() {
		if ($(this).val() == '') {
			$(this).css('color', '#a9b8c5');
			$(this).val('Enter your full name..');
		}
	});
	
	$("#callback_form #phone").val() == 'Your phone number..';
	$("#callback_form #phone").click(function() {
		if ($(this).val() == 'Your phone number..') {
			$(this).css('color', '#414e64');
			$(this).val('');
		}
	});
	$("#callback_form #phone").blur(function() {
		if ($(this).val() == '') {
			$(this).css('color', '#a9b8c5');
			$(this).val('Your phone number..');
		}
	});
	
	$("#callback_form #email").val() == 'And your email address';
	$("#callback_form #email").click(function() {
		if ($(this).val() == 'And your email address') {
			$(this).css('color', '#414e64');
			$(this).val('');
		}
	});
	$("#callback_form #email").blur(function() {
		if ($(this).val() == '') {
			$(this).css('color', '#a9b8c5');
			$(this).val('And your email address');
		}
	});	
	$("#callback_form .submit").click(function() {
		if ($("#callback_form #fullname").val() == 'Enter your full name..') $("#callback_form #fullname").val('');
		if ($("#callback_form #phone").val() == 'Your phone number..') $("#callback_form #phone").val('');
		if ($("#callback_form #email").val() == 'And your email address') $("#callback_form #email").val('');
	});
	$('#callback_form').validate();

	$('#claim_form').validate();
	$('#contact_form').validate();

});

