$(document).ready(function() {
/* jQuery document.ready BugFix */ 
if (document.readyState != "complete" && (!$.browser.mozilla)) 
{    
  setTimeout( arguments.callee, 100 ); return;
} 
/* End BugFix */
  
  $("#dHomePageImageContainer").cycle({
		fx: 'fade',
    timeout: 8000,
    speed: 2000,
    delay: -2000
	});  
  
  LaunchModal("/_content/actie/actie.overzicht.php", "468px", false);
 
});

function LaunchModal(aSource, aWidth, aCouldBeClosed)
{
  $.fn.colorbox({      
    width:"524px",         
    height: "325px;",    
    initialWidth:"200px",
    initialHeight:"200px",      
    iframe:true,
    overlayClose: aCouldBeClosed,         
    escKey: aCouldBeClosed,     
    opacity:0.8,
    close: "",
    href: aSource 
  });              
}
