/*
 *
 * Author: Bruno Souza - www.brunomacaco.com.br
 *
 */

(function($){
	$.fn.extend({
		accordion : function(target){
			var clickTrigger = $(this);
			var contentHolder = $(this).next();
			clickTrigger.click(function(){
				if($(this).next().is('.view')){
					$(this).next().slideUp('slow').removeClass('view') && $(this).removeClass('open');
				}else{
					$(clickTrigger).next().hide('slow') && $(clickTrigger).removeClass('open');
					$(this).next().slideDown('slow').addClass('view') && $(this).addClass('open');
				}
			})
			
		}
	})
})(jQuery);
