(function($){  
 
	$.fn.accordion = function() {

		return this.each(function() {
            
			$(this).children('.csc-default').children('.bodytext').hide();
			$(this).children('.csc-default').children('div.csc-header').children('h5').css({
				'cursor' : 'pointer',
				'font-size' : '1em',
				'font-weight' : 'bold',
				'border-bottom' : '1px solid #BAD7EC',
				'padding' : '0 0 4px 0'
				});

			$(this).children('.csc-default').children('div.csc-header').click(function() {
				if($(this).next('p:visible').length >= 1) {
					//$(this).next('p').hide(200);
                    $(this).children('.csc-default').children('.bodytext').hide(200);
				} else {
                    $('.csc-default').children('.bodytext').hide(200);
					$(this).next('p').slideDown(200);
				}
			});

		});
	};
	
})(jQuery);
