// Apply getElementById patch
if ( !document.getElementById ) {
    if ( document.all ) {
        document.getElementById = function( x ) {
            return this.all[x];
        }
    }
    else if ( document.layers ) {
        document.getElementById = function( x ) {
            return this[x];
        }
    }
}

function playTeaser() {
	var so = new SWFObject("vtr.swf", "video", "320", "200", "8", "#000000");
	so.addParam("scale", "noscale");
	so.addParam("salign", "TL");
	so.addVariable("url", "video/devildared_teaser.flv");
	so.write("teaser");
	document.getElementById("trailer").style.display = "";
}