// JavaScript Document
// screen thingies

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

nospam = function( user, domain ) {
	document.write('<a href="mailto:' + user + '@' + domain+'">'+ user + '@' + domain+'</a>');
}

$(function () { // on jQuery's DOM load event

//$('.kolomlinks a').linkNotify(); // display "Loading..." when any link is clicked in the .fullpage area
//$('.subnavlist a').linkNotify('Loading your next page'); // display 'Loading your next page' on all links in the .content div

});

