$(document).ready(function() {	

$("#sideform").validationEngine({
				ajaxSubmit: true,
					ajaxSubmitFile: "ajaxSubmit.php",
					ajaxSubmitMessage: "<img src='/chat/images/formHeader.gif' /><p><strong>Thank you for completing our contact form. </STRONG><p><p>One of our team will be in touch shortly.  If your enquiry is urgent, please call us on: 01252 721821, or email: <a href='mailto:enquiries@odyssey.co.uk'>enquiries@odyssey.co.uk</a></p><br>",
				success :  function() { 		$("#sideform").submit(function() {  
		var $inputs = $('#sideform :input');
		var values = {};
			$inputs.each(function() {
			values[this.name] = $(this).val();
		});
		

		return false;  
	}); }, 
				failure : function() {}
			})
	
	$('.default-value').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = "";
			}
		});
			
		$(this).blur(function() {
			if(this.value == "") {
				this.value = default_value;
			}
		});
	}); 

}); 
