/*Thumbnails laten zien bij mouseover*/
function showThumbs(video, titel) {  
	setTimeout("document.getElementById('display_"+video+"').innerHTML = '<img id=\"display_"+video+"_plaatje\" src=\"http://www.hdstockshot.com/show_image.php?filename=video/swf/"+video+"/1.jpg&amp;width=100&amp;height=70&amp;ref=true\" alt=\""+titel+"\" />';", 0);	
	setTimeout("document.getElementById('display_"+video+"').innerHTML = '<img id=\"display_"+video+"_plaatje\" src=\"http://www.hdstockshot.com/show_image.php?filename=video/swf/"+video+"/2.jpg&amp;width=100&amp;height=70&amp;ref=true\" alt=\""+titel+"\" />';", 1000);	
	setTimeout("document.getElementById('display_"+video+"').innerHTML = '<img id=\"display_"+video+"_plaatje\" src=\"http://www.hdstockshot.com/show_image.php?filename=video/swf/"+video+"/3.jpg&amp;width=100&amp;height=70&amp;ref=true\" alt=\""+titel+"\" />';", 2000);	
	setTimeout("document.getElementById('display_"+video+"').innerHTML = '<img id=\"display_"+video+"_plaatje\" src=\"http://www.hdstockshot.com/show_image.php?filename=video/swf/"+video+"/4.jpg&amp;width=100&amp;height=70&amp;ref=true\" alt=\""+titel+"\" />';", 3000);	
	setTimeout("document.getElementById('display_"+video+"').innerHTML = '<img id=\"display_"+video+"_plaatje\" onmouseover=\"javascript:showThumbs("+video+");\" src=\"http://www.hdstockshot.com/show_image.php?filename=video/swf/"+video+"/1.jpg&amp;width=100&amp;height=70&amp;ref=true\" alt=\""+titel+"\" />';", 4000);	
}
