/*
 * $Id: script.js 115 2009-10-18 02:17:47Z rob $
 *
 * Dit werk is auteursrechtelijk beschermd.
 * Copyright (c) 2008-2009 OhReally.nl <contact@OhReally.nl>
 */

// Init function.
function init() {
	// Initialize mouseovers and the like.
	initNavigation();

	// Turn site into AJAX enabled site if browser supports it.
	// (Do not enable by default.)
	initAjax();

	// Rewrite external links to open in a new window.
	initExternalLinks();
}

function initExternalLinks() {
	var links = document.getElementsByTagName('a');
	for (var i = 0; i < links.length; i++) {
		if (links[i].getAttribute('href') && links[i].getAttribute('rel') == 'external') {
			links[i].setAttribute('target', '_blank');
		}
	}
}

