function playundefined() {}

$(document).ready(function () {
 $("li.file-item").hover(
   function () {$(this).addClass('play');},
   function () {$(this).removeClass('play');
     var playid = $(this).find('OBJECT');
     if (playid != 'undefined') { 
     	var vidid = $(this).find('.videoid').val();
     	playVideo(vidid);
     }
   }
 );
});

function playVideo (videoId)
{
	eval("play"+videoId +"()");
}

function createFlashEmbed(videoFile,container,_width,_height)
{
	flashembed(container, 
	{src:'/other_files/Resources/flash-players/FlowPlayerClassic.swf',width: _width,height: _height,wmode:'transparent'},

	{config: { autoPlay: true,autoBuffering: true,	bufferLength:0,	controlBarBackgroundColor:'0x000000',
	initialScale: 'scale',videoFile: escape(videoFile),hideControls: true,showMenu: false}} 
	)
}
