
function start()
{
  if(CCL.Debug)
    CCL.Warn('CCL load complete.');
  
  CCL.LoadScript('/lib/_ajax/Poorterij.js', function()
  {
    window.Poorterij = new Poorterij();
  });     
}


$(document).ready(function() {
    $('a.fancybox').each(function()
    {
        $(this).addClass('iframe');
        $(this).fancybox({width: Math.min($(window).width() - 75, 830), height: Math.min($(window).height() - 75, 398 )});
        $(this).click();
    });
    
    //
    // Check for at least 5 voorstellingen
    //
    $('#C4_Form .voorstelling-form').each(function() {
      $('#C4_Form').submit(function() {
        var iSelected = ($('input.voorstelling:checked').length);
        
        if (iSelected < 5)
        {
          alert('U dient tenminste 5 voorstellingen te selecteren');
          return false;
        }        
        
        return true;
      
      });
    });
});
