// Functie voor het include van js bestanden
function include(bestand)
{
	var script  = document.createElement('script');
	script.src  = bestand;
	script.type = 'text/javascript';
	script.defer = true;

	document.getElementsByTagName('head').item(0).appendChild(script);
}

// Hier neerzetten welke js bestanden je wil includen
// BV. include('/js/<bestandsnaam>.js')

//include('/js/fancybox/jquery-1.4.2.min.js');
//include('/js/fancybox/jquery.mousewheel-3.0.2.pack.js');
//include('/js/fancybox/jquery.fancybox-1.3.0.pack.js');
//
//include('/js/fancybox/jquery-1.4.2.min.js');
//include('/js/fancybox/jquery.mousewheel-3.0.2.pack.js');
//include('/js/fancybox/jquery.fancybox-1.3.0.pack.js');
include('/js/faqscript.js');
include('/js/fancybox.js');
