$(document).ready(function() {
	//register ketchup for the Registration Form
	  if($('#registration_form').length) {
		    $('#registration_form').ketchup({
		    	  validationAttribute: 'rel'
		    	  });
		  }

	  //register ketchup for the Login Form
	  if($('#login_form').length) {
		    $('#login_form').ketchup({
		    	  validationAttribute: 'rel'
		    	  });
		  }
	  
	  //register ketchup for the Change Password Form
	  if($('#changepassword').length) {
		    $('#changepassword').ketchup({
		    	  validationAttribute: 'rel'
		    	  });
		  }

	  /*
	  //register ketchup for the Directory Submission Form
	  if($('#formdetails').length) {
		    $('#formdetails').ketchup({
		    	  validationAttribute: 'rel'
		    	  });
		  }
	 */
	  
	  //register ketchup for the Social Bookmarking Form
	  if($('#socialbookmarking').length) {
		    $('#socialbookmarking').ketchup({
		    	  validationAttribute: 'rel'
		    	  });
		  }
	  
	  
	  //register ketchup for the Ticket-Support Form
	  if($('#new-ticket').length) {
		    $('#new-ticket').ketchup({
		    	  validationAttribute: 'rel'
		    	  });
		  }
});
