var cbox =  {
	init: function(){
		this.events();
	},
	events: function(){
		$('.eventLink').colorbox({
			width:"900px", 
			inline:true, 
			href:function(){
				return $(this).attr('href')
			},
			onLoad:function(){
				$('div#contentWrapper object').hide();
			},
			onCleanup:function(){
				$('div#contentWrapper object').show();
			}
		});
	},
	runPage: function(link){
		jQuery.colorbox2({
			href: link,
			iframe: true,
			width: "890px",
			height: "635px"
		});
	}
};

$(document).ready(function(){
	cbox.init();
});
