$(function() {
	var preload = '<div id="preloadB"><img src="' + public_root_path + '/images/ajax/loading.gif" alt="" /></div>';
	$('td.tdword > span').css({"display":"none"});
	$("td.yeslong").click(function(){
		var value = $("span", this).html();
		var el = $(this).next();
		el.html(preload);
		$.post(publicRootPath+"/ajax.php?GSystemAjax=loadDictionaryValue", { dictionaryID: value}, function(data){ el.html(data); });
	});
	$(".search_dictB").hide();
	$(".search_dictA").click(function() {$(this).fadeOut("slow", function() { $(".search_dictB").fadeIn("slow"); }) });
	$(".search_close").click(function() {$(".search_dictB").fadeOut("slow", function() { $(".search_dictA").fadeIn("slow"); }) });
	$(".dictio_form").change(function() { window.location.href = $(this).val(); });
});
