function switcher(obj_id, tag_a) {
	var obj, speed, cur_flag = false;
	speed = 400;
	obj = document.getElementById(obj_id);
	$("#switcher_titles .sel").each(function(){this.className = "";});
	tag_a.className = "sel";
	$("div.switcher_content").each(function(){
			if (this.style.display == "block") {
				//$(this).BlindUp(speed);
				$(this).slideUp('normal');
				if (this.id == obj_id) cur_flag = true;
			}
		}
	);
	if(cur_flag == false) {
		/*setTimeout(function(){
			$('#' + obj_id).BlindDown(speed);
		}, speed);*/
		$('#' + obj_id).slideDown('normal');
	}
}

$(function() {
	$(".full-list li > a").click(function(){
		$(this).parents("li").children(".full-text").toggle();
		return false;
	});
});

