/* 

   made by 4rn0 -- content managed websites (c) 2005 - www.4rn0.nl
   this file has been stripped from all excess whitespaces and comments
   Thnx DAD!

*/

if (document.addEventListener) { document.addEventListener('DOMContentLoaded',init,null); }
/*@cc_on @*/ /*@if (@_win32) document.write("<script defer src=../js/init.js><"+"/script>"); /*@end @*/   
window.onload = init;


function init() {

	if (arguments.callee.done) {
		return;
	}
	
	arguments.callee.done = true;
	
	if (typeof(document.getElementById) == 'undefined') {
		document.getElementById = function(id) {
			return document.all[id];
		}
	}
	


	thumbs();

};


function thumbs() {

	if (document.getElementById('beelden')) {
		var anchors = document.getElementById('beelden').getElementsByTagName('A');
		for (var i=0;i<anchors.length;i++) {
			if (anchors[i].className == 'thumb') {
				anchors[i].onmouseover=function() {
					document.getElementById('main').src=this.href;
					return false;
				};
				if (anchors[i].className == 'thumb') {
				anchors[i].onclick=function() {
				
				return false;
				}
				}
			}
		}
	}
};

