   jQuery.fn.hide_display = function(p) {
   		if(typeof p == "undefined"){
			p = {};
		}
        if(typeof p.show_label == "undefined"){
			p.show_label = "Show Display";
		}
		
        if(typeof p.hide_label == "undefined"){
			p.hide_label = "Hide Display";
		}
		
        if(typeof p.link_obj == "undefined"){
			p.link_obj = "a.toggle_display";
		}		
		
		if (jQuery(this).is(":hidden")) {
            jQuery(p.link_obj).html(p.show_label);
            jQuery(this).slideDown("slow");
        } else {
            jQuery(p.link_obj).html(p.hide_label);
            jQuery(this).slideUp("slow");
        }
    }