$(document).ready(function() { 
	
	  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: "Bild {current} von {total}"								
                                               });
		$("a[rel='cfade']").colorbox({
                                                 transition:"fade",
                                                 opacity: "0.7",
                                                 maxWidth:"90%",
                                                 maxHeight:"90%",
						 current: "Bild {current} von {total}",
                                                 speed: 800
                                             });
		$("a[rel='cslide']").colorbox({
                                                 slideshow:true,
                                                 slideshowSpeed:6000,
                                                 slideshowAuto:true,
                                                 transition:"elastic",
                                                 speed:500,
                                                 opacity: "0.7",
                                                 maxWidth:"90%",
                                                 maxHeight:"90%",
                                                 previous:"zur&uuml;ck",
                                                 next:"vor",
                                                 close:"schlie&szlig;en",
                                                 current: "Bild {current} von {total}",
                                                 slideshowStart: "Diashow starten",
                                                 slideshowStop: "Diashow anhalten"
                                               });
		$(".youtube").colorbox({
                                                iframe:true,
                                                width:650,
                                                height:550
                                       });
		$(".iframe").colorbox({
                                                width:"90%",
                                                height:"90%",
                                                iframe:true
                                       });
}    
});
