new Image().src='/td/i/menu_round_left.gif';
new Image().src='/td/i/menu_round_right.gif';
new Image().src='/td/i/links_arrow_hover.gif';
new Image().src='/td/i/list_item_right_hover.gif';
new Image().src='/td/i/list_item_panel_right_hover.gif';
new Image().src='/td/i/list_item64_right_hover.gif';
new Image().src='/td/i/hover_play_icon.png';
new Image().src='/td/i/media_triangle_up.png';
new Image().src='/td/i/media_triangle_left.png';

var _media_embedded_code;

function insertVideo(url,width,height){
	_media_embedded_code='<'+'embed src="'+url+'" width="'+width+'" height="'+(40+height)+'" autoplay="true" controller="true" loop="false" showstatusbar="0" hasmenu="true" /'+'>';
	$('media_place').innerHTML=_media_embedded_code;
}

function insertFlash(url,width,height){
	_media_embedded_code='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="movie" value="'+url+'" /><param name="menu" value="false" /><param name="quality" value="high" /><embed src="'+url+'" menu="false" quality="high" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	$('media_place').innerHTML=_media_embedded_code;
}

function insertFLV(player,id,width,height){
	_media_embedded_code='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="menu" value="false" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="config=http://'+__tLib_domain+'/playerconfig/'+id+'.xml&playList=http://'+__tLib_domain+'/playlist/'+id+'.xml" /><param name="allowScriptAccess" value="always" /><param name="movie" value="'+player+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="'+player+'" FlashVars="config=http://'+__tLib_domain+'/playerconfig/'+id+'.xml&playList=http://'+__tLib_domain+'/playlist/'+id+'.xml" quality="high" menu="false" allowFullScreen="true" bgcolor="#ffffff" width="'+width+'" height="'+height+'" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	$('media_place').innerHTML=_media_embedded_code;
}

function tabSelector(num,tabs_id,selector_id){
	var tabs=$(tabs_id).childNodes;
	for(var i=0;i<tabs.length;i++){
		if(i==num){
			tabs[i].style.display='block';
		}else{
			tabs[i].style.display='none';
		}
	}
	var span=$(selector_id).getElementsByTagName('span');
	for(var i=0;i<span.length;i++){
		var link=span[i].getElementsByTagName('a').item(0);
		if(!link){
			span[i].innerHTML='<a href="#" onclick="return tabSelector('+i+',\''+tabs_id+'\',\''+selector_id+'\')">'+span[i].innerHTML+'</a>';
		}else if(i==num){
			span[i].innerHTML=link.innerHTML;
		}
	}
	return false;
}