$(document).ready(function() { 
$(".picturelink a").attr("rel", "cslide");	
	  if($("[rel='csingle'], [rel='cfade'], [rel='cslide'], .colorbox, .youtube, .iframe").length)
            {   
                $.insert(WB_URL+ '/modules/colorbox/jquery.colorbox-min.js');

                $(".colorbox").colorbox({
                                                maxWidth:"90%",
                                                maxHeight:"90%",
                                                opacity: "0.7"                                 

                });
		$("a[rel='csingle']").colorbox({
                                                 opacity: "0.7",
                                                 maxWidth:"90%",
                                                 maxHeight:"90%",
                                                 current: "Afbeelding {current} van {total}"								
                                               });
		$("a[rel='cfade']").colorbox({
                                                 transition:"fade",
                                                 opacity:"0.7",
                                                 maxWidth:"90%",
                                                 maxHeight:"90%",
                                                 current: "Afbeelding {current} van {total}",
                                                 speed:800
                                             });
		$("a[rel='cslide']").colorbox({
												 title: function() { var url = $(this).attr('href'); return '<a href="'+url+'" target="_blank">Open origineel &raquo;</a>';},
												 slideshow:true,
                                                 slideshowSpeed:4000,
                                                 slideshowAuto:false,
                                                 transition:"none",
                                                 speed:0,
                                                 opacity:"0.7",
												 width:"90%",
                                                 height:"90%",
                                                 previous:"Vorige",
                                                 next:"Volgende",
                                                 close:"Sluiten",
                                                 current:"Afbeelding {current} van {total}",
                                                 slideshowStart:"Start slideshow",
                                                 slideshowStop:"Stop slideshow"
                                               });
		$(".youtube").colorbox({
                                                iframe:true,
                                                width:650,
                                                height:550
                                       });
		$(".iframe").colorbox({
                                                width:"90%",
                                                height:"90%",
                                                iframe:true
                                       });
}    
});

