// JavaScript Document
jQuery(document).ready(function() {
	var formID = jQuery('.entry').find('form');
	if(formID!=null) {
		//alert('this');
		if (jQuery(formID).hasClass('cform')){
			jQuery('.linklove').remove();
			}
		else {
		jQuery(formID).find('p:first').remove();
		jQuery(formID).prepend('<p>Please use the password you were given (not your regular RENCI network password or Onyen password) to access this form. </p>');
		}
	}
	else {
		//alert(formID);
	}
	
								});