
/* Images are by default loaded in low quality.
This function will replace the images by higher resolution images.
*/
function reloadImages(){
	var aImageArrayOrig = new Array("img/header-logo-questions-icons-lq.jpg", "img/question-boxes-lq.jpg");
	var aImageArrayRepl = new Array("img/header-logo-questions-icons-hq.jpg", "img/question-boxes-hq.jpg");
	var oLoader;
	
	for(var i=0; i < aImageArrayOrig.length; i++){
		oLoader = new ImageLoader(aImageArrayOrig[i]);
		oLoader.loadEvent = replaceImage('img'+i, aImageArrayRepl[i]);
		
		oLoader.load();
	}
	
	/* Reload the background, which is in the css file 
	oLoader = new ImageLoader('img/content-background-hq.jpg');
	oLoader.loadEvent = function(){
		document.body.style.backgroundImage = "url(img/content-background-hq.jpg)";
	}
	oLoader.load();	
	*/
}

function replaceImage(id, newUrl){
	var img = document.getElementById(id)
	if(img){
		img.src	= newUrl;
	}
}

var flashvars = {};
var params = {
	menu: "false",
	quality: "hight",
	wmode: "transparent",
	allowScriptAccess: "always"
};
var attributes = {};
//407 * 302
swfobject.embedSWF("http://www.youtube.com/v/YkJQpc5AlZo&hl=nl_NL&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6&amp;showinfo=0", "youtube-player", "407", "302", "9.0.0", false, flashvars, params, attributes);