/*---------------------------------------------
dutour.js

	Scripts associated with the Digital 
	Union Tour

----------------------------------------------*/

window.onload = init;

function init() {
	var browser = navigator.appName;
	
	if(browser == "Microsoft Internet Explorer") {
			var tourDiv = document.getElementById("DUtour_flash");
			
			if(tourDiv != null) {
				tourDiv.innerHTML = "<object type=\"application/x-shockwave-flash\" data=\"index.swf\" width=\"900\" height=\"600\"><param name=\"movie\" value=\"index.swf\" /><param name=\"wmode\" value=\"transparent\" /></object>";	
			}
	}
}