var script_db =  {
	init: function(){
		this.links();
		this.events();
	},
	events: function(){
		$('.eventLink').colorbox({
			width:"900px", 
			inline:true, 
			href:function(){
				return $(this).attr('href')
			},
			onLoad:function(){
				$('div#content object').hide();
			},
			onCleanup:function(){
				$('div#content object').show();
			}
		});
	},
	links: function(){
		$('a.external').click(function(){
			window.open($(this).attr("href"));
			return false;
		});
	}
};

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