﻿// JScript File
$(document).ready(
  function()
  {
    $(".dlcontent dt").click(
      function()
      {
         $(".dlcontent dd").hide();
         $(this).parent().find("dd").show();
      }
    );
    $(".smallimage").mouseover(
    function()
    {
      if($.trim($(this).attr("src")) !="")
      {
         $("#imagecontent img").attr("src",$(this).attr("src"));
         $("#imagecontent").css({top:$(this).offset().top - 100,left:$(this).offset().left+ $(this).width()+2 });
         $("#imagecontent").show();
      }
    }
  );
  $(".smallimage").mouseout(
    function()
    {
      $("#imagecontent").hide();
    }
  );
  $("#imagecontent").mouseover(
   function()
   {
     $("#imagecontent").show();
   }
  );
  $("#imagecontent").mouseout(
   function()
   {
     $("#imagecontent").hide();
   }
  );
    
    
  }
);
