/* Select fotoalbum
 *  selectbox
 *  
 */
function selectFotoAlbum() {
	var target = document.getElementById("selectFotoAlbum").options[document.getElementById("selectFotoAlbum").selectedIndex].value;
	document.location = target;
}

function displayFeiPlayer() {
    var so = new SWFObject("http://www.feitv.org/ptvFlash/fei/feiplayer/FEI_player_new.swf", "fei_player", "300", "309", "9", "#000000");
    so.addParam("base", "http://www.feitv.org/ptvFlash/fei/feiplayer/");
    so.addParam("allowScriptAccess", "sameDomain");
    so.addParam("allowFullScreen", "true");
    so.addVariable("autoPlayer", "false");
    so.addParam("wmode", "transparent");
    so.addVariable("configPath", "http://www.feitv.org/nameValue/nameValueXML/0,,12664~4767,00.xml");
    so.write("flashElement"); 
} 

//Toon feiplayer met een delay
//Om andere belangrijkere tools niet te vertragen
$(document).ready(function() {

    if ($("#tsh_container").length > 0) { 
        
		setTimeout("displayFeiPlayer()", 3500);
    }
});
