﻿//
//
//
//
// edicion y control de videos operativos
//




jQuery().ready(function(){	
	// applying the settings
	jQuery('#theMenu').Accordion({
		active: 'h3.selected',
		header: 'h3.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 200,
		hideSpeed: 600
	});
	
	videoChange('001.wmv');
    //$('#lk').media( { width: 460, height: 344, autoplay: true } ); 
});	

function videoChange(lnkvideo)
{

    if (lnkvideo == '000.wmv')
    {
    	$('#material').html('<font color="red">No hay asociado material a este vínculo<br/> --> video: '+ lnkvideo +' </font>');
    }
    else
    {
	    $('#material').html('<a name="lk" id="lk" class="media {width:460, height:344}" href=".//videos//' + lnkvideo + '"></a> ');
	//    alert($('#material').html());
	    $('#lk').media( { width: 460, height: 344, autoplay: true } ); 
    }

	//setTimeout(	$('#material').toggle(900), 9000);
//	alert('show');
    //$('#material').toggle(400);
}

