$(document).ready(function() {
	$("#tabs .idTabs > span.plus >a").click(function(){
		var hidden=$(this).next('#tabs .inside').is(':hidden');
		if (hidden){
			$(this).before('#tabs .inside').fadeIn('slow');
		}
		else {
			$(this).parent('.inside').fadeOut('slow');
		}
		return false;
	});
});