function openColorBox(url,width,height){
	
	
	$.fn.colorbox({href:url, width:width, open:true, height:height, iframe:true}); 


}
// url: iframe-url
// width / height: selbsterklaerend


function openColorBoxGallery(img,rel){
	$.fn.colorbox({href:img, rel:rel}); 
}
// img: pfad zum bild
// rel: gruppenattribut fuer browsen innerhalb colorbox

