$(document).ready(function(){
			//Examples of how to assign the ColorBox event to elements
			$("a.box").colorbox();
			$("a.boxfade").colorbox({transition:"fade"});
			$("a.boxplop").colorbox({transition:"none"});
			$("a.boxslide").colorbox({slideshow:true});
			$("a.boxvid368").colorbox({iframe:true, innerWidth:368, innerHeight:210});
			$("a.boxvid400").colorbox({iframe:true, innerWidth:400, innerHeight:225});
			$("a.boxvid600").colorbox({iframe:true, innerWidth:610, innerHeight:343});
			$("a.boxpage").colorbox({width:"80%", height:"80%", iframe:true});
			
			$("a.boxalert").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'); }
			});
			
			//Example of preserving a JavaScript event for inline calls.
			$("#click").click(function(){ 
				$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
				return false;
			});
		});

