jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);

}; 

$().ready(function(){
	$('a.show_info').parents('p').nextAll('.csc-textpic').hide();	
	$('a.show_info').click(function(){

		$(this).parents('p').nextUntil('p').fadeToggle(800, function(){
			if($('.csc-textpic:visible').length == 0)
			{
		
			}
		});
			
	
	});
	
});
