var AantalButtons = 4;
var Klaar = 0;

if (top != self) {
	top.location = location;
} 

function LaadPlaatjes()
{
	Button = new Array(AantalButtons + 1);
	for (teller = 1; teller <= AantalButtons; teller++) {
		Button[teller] = new Image();
		Button[teller].src = "images/button0" + teller + ".jpg";
	}
	Button_ = new Array(AantalButtons + 1);
	for (teller = 1; teller <= AantalButtons; teller++) {
		Button_[teller] = new Image();
		Button_[teller].src = "images/button0" + teller + "o.jpg";
	}
	Klaar = 1;
}

function OverButton(nummer)
{
	if (Klaar > 0) {
		document.images['button0' + nummer].src=Button_[nummer].src;
	}
}

function UitButton(nummer)
{
	if (Klaar > 0) {
		document.images['button0' + nummer].src=Button[nummer].src;
	}
}

// google analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18579196-1']);
_gaq.push(['_trackPageview']);

(function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

