/**
 * @author Mathew Hooper <http://www.firstdestination.co.uk/Contact-Us.aspx>
 * @copyright First Destination 2008
 * @version development
 * -----------------------------------------------------------------------------
 *	           (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.
 * -----------------------------------------------------------------------------
 **/
 
$(function() {
	$("#contact").validate({ 
						   rules: {
							   name: {
								   required: true,
								   minlength: 3
							   },
							   emailaddress: { 
							   	   required: true,
								   minlength: 5 
							   },
							   themessage: { 
								   required: true,
								   minlength: 20
							   }
						   },
						   messages: {
							   name: "<br \>Please enter your name",
							   emailaddress: "<br \>Please enter your full email address",
							   themessage: "<br \> Please enter your message!  (20 character minimum)"
						   }
						   });
});