$(document).ready(function(){$(".sDLExp").before("
");$(".sDLExpHide").hide();$(".sDLExpShow").click(function(){$(this).toggle();$(this).next().toggle();$(this).parent().next().children("DD").show();$(this).parent().next().children("DT").removeClass("sClose").addClass("sOpen");return false;});$(".sDLExpHide").click(function(){$(this).toggle();$(this).prev().toggle();$(this).parent().next().children("DD").hide();$(this).parent().next().children("DT").addClass("sClose").removeClass("sOpen");return false;});$(".sDLExp DT").addClass("sClose").toggle(function(){$(this).toggleClass("sClose").toggleClass("sOpen");},function(){$(this).toggleClass("sClose").toggleClass("sOpen");}).click(function(){$(this).next().toggle();});$(".sDLExp DT STRONG").each(function(){$(this).replaceWith(""+$(this).text()+"");});$(".sDLExp DD").hide();});