/** COMMON / SHARED:
 *  Might depend on Prototype 1.5.1 and 1.7.1
 *  Only dump stuff here when al work is completed!!.
 */


// ENABLE EXTERNAL LINKS (classname = xLink):
Event.observe(window, 'load', function() {
	// Get all a tags with classname 'xLink'
	$$('a.xLink').each(function(link){
		// Set attribute 'target' to ...
		link.setAttribute('target', '_blank');
		// Include fixed image or use CSS
		link.innerHTML  +=  '&nbsp;<img src="/images/ext-link.png" alt="Deze link wordt in een nieuw venster geopend." />';  
	});
});




// GOOGLE ANALYTICS:
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

Event.observe(window, 'load', function() {
	// Start Google Analytics
	try {
		var pageTracker = _gat._getTracker("UA-7877397-1");
		pageTracker._trackPageview();
	}
	catch(err) {
	}
});







