$(function(){
  //kwicks begin
  $('.kwicks').kwicks({
     max : 450,
     spacing : 1,
     event : 'mouseenter'
  });
  
  $(".kwicks li").hover(function(){
    $(".kwicks li h4.title").stop(true, true).fadeOut("fast");
    $(this).find("span").stop(true, true).fadeOut();
    $(this).find(".description").stop().animate({bottom:"0"}, "normal")
  }, function(){
    $(".kwicks li h4.title").stop(true, true).fadeIn("fast");
    $(this).find("span").stop(true, true).fadeIn();
    $(this).find(".description").stop().animate({bottom:"-70px"}, "normal")
  });
});
  
  
  function jqCheckAll( id, name )
{
  if($('#' + id).is(':checked'))
    {
      $("#NaamBedrukken").show("slow");      
    }
      else
    {
      $("#NaamBedrukken").hide("slow");

    }
 }
$(document).ready(function() {
  var target = $(this).attr("id");
   if($("#ctl00_ctl00_ctl00_ContentPlaceHolderDefault_ContentPlaceHolder1_BegrafenisondernemersDetailPage_3_chkNaamBedrukken").is(':checked'))
    {
      $("#NaamBedrukken").show("slow"); 
    }
      else
    {
      $("#NaamBedrukken").hide("slow");
    
   
    }
});




