
schedule("window", insertSWFs); 


/*
	** Each SWF file that needs to be inserted should have a separate function.
*/
function insertSWFs() 
{
	if(document.getElementById('flashPresentation')) insertFlashPresentationSWF();
};

function insertFlashPresentationSWF() 
{
	var so = new SWFObject("media/flash/flash-presentation.swf", "flashPresentationINS", "738", "214", "7", "#ffffff");
	so.addParam("wmode", "transparent");
	so.write("flashPresentation");
};