jQuery.noConflict();
jQuery(function($) { 
	// Hide parent on click (error messages, etc...)
	$('a.hideparent').click(function(){ 
		$(this).parent().fadeOut();
		return false;
	}); 				
}); // end jQuery
