﻿$(document).ready(function() {
    $("#Form0").validate({
        messages: {
	        name: {
		        required: '<span style="color:#db8727; font-weight:bold;">**Required**</span>'
		    },
		    phone: {
		        required: '<span style="color:#db8727; font-weight:bold;">**Required**</span>'
		    },
		    emailaddress: {
		        required: '<span style="color:#db8727; font-weight:bold;">**Required**</span>',
		        email: '<span style="color:#db8727; font-weight:bold;">**Required**</span>'
		    }
	    }		
    });
});


