$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='file_load']").colorbox({opacity:'0.85', transition:'fade', speed:350, iframe:'true', width:400, height:550});
	$(".item_load").colorbox({opacity:'0.75'});
	$(".popup_form").colorbox({width:600, height:556, iframe:true});
	$(".popup_video").colorbox({iframe:true, innerWidth:425, innerHeight:284});
	$(".example9").colorbox({
		onOpen:function(){ alert('onOpen: colorbox is about to open'); },
		onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
		onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
		onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
		onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
	});			
});

