/* Preload */	
var  website_url = 'http://www.cvketeltechniek.nl';


if(document.images) {
	 var images = new Array();
		 images[0] = Array("header_img", website_url + "/layout_img/header.png");
		 images[1] = Array("table_right", website_url + "/layout_img/box/newsbox_06.png");
		 images[2] = Array("table_bottom", website_url + "/layout_img/box/newsbox_08.png");
		 images[3] = Array("table_right2", website_url + "/layout_img/box/newsbox_06.png");
		 images[4] = Array("table_bottom2", website_url + "/layout_img/box/newsbox_08.png");	
	}


/* Below replaces all background images */
function replace_bg_png(images){

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])
var is_ie = ((version >= 5.5) && (document.body.filters)) ? true : false;

for(var i=0; i < images.length; i++)
{
	if(is_ie)
	{
		document.getElementById(images[i][0]).style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='" + images[i][1] + "');";
	}
	else
	{
		document.getElementById(images[i][0]).style.backgroundImage = "url(" + images[i][1] + ")";
	}
	}	
}