$.mokkels = {

	init:function()	{
		// init the various tabbed content sections
		$("ul.tabs").tabs();		
		
		// Handle the click on a link with class=external
		$('a.external').bind('click', function() {
			window.open($(this).attr('href'));		
			return false;
		});
	}
}

$(function(){
	$.mokkels.init();
});

