
function setupVideos() {
	
	elmStMarysVid = document.getElementById("stmarysVideoContainer");
	elmHumanitiesVid = document.getElementById("humanitiesVideo");
	
	elmStMarysVid.onclick = function() {replaceVideo("stmarysVideo", "/files/office2/1780376256/day_in_the_life_finished.flv");}
	elmHumanitiesVid.onclick = function() {replaceVideo("humanitiesVideo", "/files/office2/1780376256/humanities.flv");}
}

function replaceVideo(strTargetID, strVideoPath) {

	var so = new SWFObject("http://video.e4education.co.uk/scrubber-new.swf?theme=dulwich-default&autoStart=true&vidName="+strVideoPath, "Embedded Video", "270", " 231", "9", "#FFFFFF");
	//so.addParam("autoStart", "true");
	so.write(strTargetID + "Container");


}

//addLoadEvent(setupVideos);