/**
 * @author Mathew Hooper <http://www.firstdestination.co.uk/Contact-Us.aspx>
 * @copyright First Destination 2008
 * @version 1
 * -----------------------------------------------------------------------------
 *	           (c) First Destination.  All rights reserved
 * -----------------------------------------------------------------------------
 *
 * This website has been exclusively licensed.  Any unauthorised copying or
 * distribution is strictly forbidden unless with the explicit permission of
 * First Destination.
 *
 * Any authorised modification of this document may result in some aspects the
 * functionality of this website failing.
 *
 * Please consult First Destination before making any changes to this document.
 * -----------------------------------------------------------------------------
 **/
 
$().ready(function() {
	$("#contact").validate({ 
		rules: {
			var1: {
			   	required: true,
			   	minlength: 2
			},
			var2: { 
				required: true,
				email: true
			},
			var3: {
				required: true,
				minlength: 10
			}
	   },
	   messages: {
		   var1: "Please enter your name",
		   var2: "Please enter a valid e-mail address",
		   var3: "<BR />Please enter a message"
	   }
	   });
});