

var Home = {
    showScreencast: function (container_id, auto_play, width) {
        width = 470;
        height = 290;
        var params = { 'allowfullscreen':'true',
                      'wmode':'transparent' };

        var flashvars = { 'file' : 'http://www.youtube.com/v/uvITpTzgksU&hl=en&fs=1&autoplay=1&rel=0',                           };

        var div = new Element("div", {'id': 'video-embed', 'style': 'display: inline-block; border:1px solid #adcfea;background:#fff;'});

$(container_id).update(div);
        swfobject.embedSWF('http://www.youtube.com/v/uvITpTzgksU&hl=en&fs=1&autoplay=1&rel=0', 'video-embed', width, height, '9', false, flashvars, params);
	}
};

