/* VARS */


	
/* INIT */
	
$(document).ready( function() {

	if( $("#contact_form").length != 0 ) {
	
		$("#contact_form").validate({
			highlight: function(element) {$(element).parent().addClass("error");},
			unhighlight: function(element) {$(element).parent().removeClass("error");}
		});
		
	}
	
} );

/* FUNCTIONS */

/*
function login_success() {

	if( parent.$.fancybox.length != 0 ) {

		parent.$.fancybox.close();
		
		parent.location.reload();
		
	}
		
}

function forgot_password_init() {

	if( $("#forgot_password_form").length != 0 ) {
	
		$("#forgot_password_form").validate();
		
		//
		
		$("#forgot_password_form").submit( function() { 
		
//			console.log("SUBMIT FORM");	
		
		} );
		
	}
		
}
*/
