
(function($){ 
    $.fn.extend({  
        toggler: function() { 
           return this.each(function() {	
				$('#'+$(this).attr('rel')).hide();
               $(this).click(function(){
                   $('#'+$(this).attr('rel')).slideToggle('slow');
				   $(this).addClass('clicked');
               })
           }); 
       } 
   }); 
})(jQuery);
						