<!-- begin hiding

/*
Preload Image With Update Bar Script (By Marcin Wojtowicz [one_spook@hotmail.com])
Submitted to and permission granted to Dynamicdrive.com to feature script in it's archive
For full source code to this script and 100's more, visit http://dynamicdrive.com
*/

// You may modify the following:
	var lengthOfPreloadBar = 300 // Length of preload bar (in pixels)
	var heightOfPreloadBar = 15 // Height of preload bar (in pixels)
	// Put the URLs of images that you want to preload below (as many as you want)
	var yourImages = new Array('styles/default/images/dpm_logo.jpg' , 'styles/default/images/itch_reclame.jpg' , 'styles/default/images/nav_normal.png' ,  'styles/default/images/tekstblok_bg.jpg' , 'styles/default/images/kopjes/index.jpg', 'styles/default/images/kopjes/contact.jpg', 'styles/default/images/kopjes/diensten.jpg', 'styles/default/images/kopjes/producten.jpg')

// Do not modify anything beyond this point!
if (document.images)
{
	var dots = new Array() 
	dots[0] = new Image(1,1)
	dots[0].src = "styles/default/images/black.gif" // default preloadbar color (note: You can substitute it with your image, but it has to be 1x1 size)
	dots[1] = new Image(1,1)
	dots[1].src = "styles/default/images/blue.gif" // color of bar as preloading progresses (same note as above)
	var preImages = new Array(),coverage = Math.floor(lengthOfPreloadBar/yourImages.length),currCount = 0
	var loaded = new Array(),i,covered,timerID
	var leftOverWidth = lengthOfPreloadBar%coverage
}
function loadImages()
{ 
	for (i = 0; i < yourImages.length; i++)
	{ 
		preImages[i] = new Image()
		preImages[i].src = yourImages[i]
	}
	for (i = 0; i < preImages.length; i++)
	{ 
		loaded[i] = false
	}
	checkLoad()
}
function checkLoad()
{
	if (currCount == preImages.length)
	{
		document.getElementById('site').style.display = '';
		document.getElementById('preloader').style.display = 'none';
		return
	}
	for (i = 0; i <= preImages.length; i++)
	{
		if (loaded[i] == false && preImages[i].complete)
		{
			loaded[i] = true
			eval("document.img" + currCount + ".src=dots[1].src")
			currCount++
		}
	}
	timerID = setTimeout("checkLoad()",10) 
}
// end hiding -->