window.onload = function(){
	coolblueMovieLinks = document.getElementById("coolbluemovie").getElementsByTagName("a");
	
	coolblueMovieContent =			'<object width="680" height="410"><param name="movie" value="http://www.youtube.com/v/me9DEN-B0HE&hl=nl_NL&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/me9DEN-B0HE&hl=nl_NL&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="680" height="410"></embed></object>';
	
	
	for (i=0;i<coolblueMovieLinks.length;i++)
	{			
		coolblueMovieLinks[i].onclick = function(){
			popupBox = new PopupBox(
								"Even geduld " + getVousOuTu("alstublieft", "alsjeblieft") + "...",
								[
									dom.create(
										"div",
										{
											className : "popupbox_content_loading"
										},
										[
											"Wordt geladen..."
										]
									)
								],
								"popupbox_insurances"
							);
							
			popupBox.setContent(coolblueMovieContent);
			popupBox.setTitle("Maak kennis met Coolblue");
			popupBox.show();
			return false;
		}
	}
}