// Custom JavaScripts for conference

	window.addEvent('domready', function() {
            if ($('main').getElements('.video')) {
                    var videos	=	$('main').getElements('.video');
                        videos.each(function(item,index) {
                            var src		=	item.getProperty('src');
                            var img		=	item.getProperty('img');	
                            var height	=	item.getProperty('height');	
                            var width	=	item.getProperty('width');			
                            item.setHTML('<object wmode="transparent"><param name="wmode" value="transparent"/><param name="FlashVars" value="file='+src+'&amp;backcolor=0x000000&amp;frontcolor=0xCCCCCC&amp;lightcolor=0x557722&amp;image='+img+'"/><embed type="application/x-shockwave-flash" src="http://entwickler.de/zonen/magazine/videos/flvplayer.swf" style="" id="single" name="single" quality="high" allowfullscreen="true" flashvars="file='+src+'&amp;backcolor=0x000000&amp;frontcolor=0xCCCCCC&amp;lightcolor=0x557722&amp;image='+img+'" height="'+height+'" width="'+width+'"></object>');
                        });
            }							 
	});



