/*
* Cache van javascripts.script.js
* Created: 2010-12-10 16:49:14
*/

/*
$Author: sjors $
$LastChangedDate: 2006-10-19 14:05:31 +0200 (do, 19 okt 2006) $
$Id: javascripts.js 28 2006-10-19 12:05:31Z sjors $
$Rev: 28 $
*/

// Google analytics
_uacct = "UA-2008357-4";

Event.observe(window, 'load', loadwin);

function loadwin(EventObj) {
	// Google analytics
	urchinTracker();
	
	if ($('active')) {
		$('active').title = 'You are here';
	}
}

function include(file) {
  var script  = document.createElement('script');
  script.src  = file;
  script.type = 'text/javascript';

  document.getElementsByTagName('head')[0].appendChild(script);
}
