$(document).ready(function() {
    $("#sharePage").validate({
        debug: false,
        rules: {
            strFromName: "required",
            strFromEmail: {
                required: true,
                email: true
            },
            strRecipientEmail: {
                required: true,
                email: true
            }
        },
        messages: {
            strFromName: "Your name is required to share this page.",
            strFromEmail: "Your email address is required to share this page.",
            strRecipientEmail: "A recipient email address is required to share this page."
        },
        submitHandler: function(form) {
            // do other stuff for a valid form
            $.post('http://vanblk.com/shareThis.php', $("#sharePage").serialize(),
            function(data) {
                //$('#results').html(data);
				$("#email").colorbox.close();
            });
        }
    });
});
