// JavaScript Document

var videoDivName = "mediaRotatorVideo";
			
function externalConduit($data)
{
	switch($data.action)
	{
		case "launchExternalSubview":
			$('#mediaRotator').append('<div id="'+videoDivName+'"></div>');
            var qString = "?file="+$data.src;
			qString += ("&autostart=true&skin=/flash/stijl.swf&stretching=stretch&playersrc=/flash/mediaplayer.swf&streamer=rtmp://cp41281.edgefcs.net/ondemand&comm_channel="+$data.comm_channel);
			$('#mediaRotatorVideo').flash({swf:'/flash/videoWrapper.swf'+qString,height:328,width:502,allowfullscreen:'true'});
			break;
		case "hideExternalSubview":
			$('#'+videoDivName).flash().remove();
			$('#'+videoDivName).empty();
            $('div').remove('#'+videoDivName);
			break;
	}
}

