function validateAndSubmitForm(theForm) {
	$('#' + theForm).validate({ignore: ':hidden'});
	if ($('#' + theForm).valid()) {
		return true;
	} else {
		return false;
	}
}

$(document).ready(function() {

	// VALIDATOR
	$.validator.messages.required = '*';
	$.validator.messages.email = '*';
	//$.validator.addMethod('req', function (value, element){ return jQuery.trim(value).length > 0;}, '*');
	
	$('a.fancy_image').fancybox();

});
