$(document).ready(function() {
        $(".lfcContent dd").hide();
        $(".lfcStyle dd").show();
            $(".lfcContent .s_on").parent().find("dd").show();
            $(".lfcContent .s_on").parent().find("dt").attr("class", "on");
            $(".lfcContent .on").parent().find("dd").show();
            $(".lfcContent dt").click(
                  function() {
                      var currentCss = $(this).attr("class");
                      if (currentCss == "on") {

                          $(this).parent().parent().find("dd").hide();
                          $(this).parent().parent().find("dt").attr("class", "");
                      }
                      else {
                          $(this).parent().parent().find("dd").hide();
                          $(this).parent().parent().find("dt").attr("class", "");
                          $(this).parent().find("dd").show();
                          $(this).attr("class", "on");
                      }
                  }
             );
//                  $(".lfcContent dd").hover(
//              function() {
//                  $("span", this).show();
//              },
//              function() {
//                  $("span", this).hide();
//              }
//            );


        });

function openwin(url, urlname, title, contentname, contents) {
    var variables = "height=536,width=736,left=500,top=200,toolbar=no, scrollbars=yes, resizable=yes, status=no";
    var hrefs = location.href.replace('#', '')
    var url = url + '?' + urlname + '=' + hrefs + '&' + title + '=' + document.title;
    contents = document.title + contents + location.href;
    if (contentname) {
        url = url + '&' + contentname + '=' + contents;
    }
    window.open(encodeURI(url), "", variables);
}
