document.write('<link href="http://www.domradio.de/apps/css/dr-apps.css" type="text/css" rel="stylesheet">');

function dr_video_widget(opts)
{
	this.options = opts;
	
	this.id 		= '5104';
	this.imagewidht = (this.options.width - 11);
	
	this.btn_play = {
		bottom	: parseInt((this.imagewidht / 2) - 48),
		left	: parseInt((this.imagewidht / 2) - 23)
	};

	this.item = {	
	image: 	'http://www.domradio.de/getthumbnail.php?mediaid=7903&width=151',
	title: 	'Nachrichten @domradio.de (22.02.12)',
	url: 	'http://www.domradio.de/videothek/7903'	};	
		
	this.write = function( element_id )
	{
		this.theHTML  = '';	
		this.theHTML  = '<div id="dr-apps-container" class="dr-apps-roundgray" style="width:'+this.options.width+'px;">';
		
		/*
		this.theHTML += '	<div id="dr-apps-header">';
		this.theHTML += '		<a href="http://www.domradio.de" target="_blank">';				
		this.theHTML += '			<img src="http://www.domradio.de/" />';
		this.theHTML += '		</a>';
		this.theHTML += '	</div>';
		*/
		
		this.theHTML += '	<div id="dr-apps-main">';
		this.theHTML += '		<div class="dr-apps-video">';		
		this.theHTML += '			<a href="'+this.item.url+'" target="_blank">';		
		this.theHTML += '				<img src="'+this.item.image+'" style="width:'+this.imagewidht+'px;"/>';
		this.theHTML += '				<img alt="Video abspielen" src="http://www.domradio.de/apps/video/btn_play.png" class="play" style="bottom:'+this.btn_play.bottom+'px; left:'+this.btn_play.left+'px;">';
		this.theHTML += '			</a>';
		this.theHTML += '		</div>';		
		this.theHTML += '		<p>';
		this.theHTML += '			<a href="'+this.item.url+'" target="_blank">';						
		this.theHTML += '				'+this.item.title;		
		this.theHTML += '			</a>';				
		this.theHTML += '		</p>';	
		this.theHTML += '	</div>';
		
		this.theHTML += '</div>';
		
			
		document.getElementById(element_id).innerHTML = this.theHTML;
	};	
}


