  function initKTDetails()
  {
	  //remove static css-hover effect to marker
    $(".ktdetailmarker").removeClass("ktdetailmarkerHover");
    //add jquery-hover effect to marker
    $(".listktdetailitem").hoverIntent(
      function() {
        $(this).find(".ktdetailmarker").fadeIn('fast');
      },
      function() {
        $(this).find(".ktdetailmarker").fadeOut('slow');
      }
    );
    
    //show detailpage    
    $(".listktdetailitem .body").bind('click',  
      function() {      
        $('<div class="iframeBtn_ktdetail"></div>')
        .appendTo('body')
        .fadeIn('fast')
        .click(
          function() 
          {  
              $(this).fadeOut('slow', function() { $(this).remove(); });
              $('.iframe_ktdetail').fadeOut('slow', function() { $(this).remove(); });
			  $("body").css("overflow", "auto");
          }        
        );
        
        $('#'+$(this).attr('id')+'_img').attr('src',$('#'+$(this).attr('id')+'_img').attr('mac'));
        $('<div name="iframe_ktdetail" id="iframe_ktdetail" class="iframe_ktdetail" />')
        .html($(this).children('.ktdetailframe').html())
        .appendTo('body')
        .fadeIn('slow');
		$("body").css("overflow", "hidden");
      }
    );
  }
  
$(document).ready(function() {
  initKTDetails();
    
  //alert($("#body").height());
});

