/* start with vorschau */
currVideoPath = '';

function showVideoSnippet(aPath) {
  
  var p = (aPath != undefined) ? aPath : '';
  p = p.replace('/mediathek/', '/bundesliga-tv/');
  
  if(p == '')
    p = currVideoPath;
    
  if(p == '') return;
  
  var pelems = p.split('/');
  var pelems2 = pelems[pelems.length-1].split('.');
  var pid = pelems2[0];
  
  retrieveURL(p, 'tv_movie'); // url des video snippet
  
  retrieveURL('/de/bundesliga-tv/video_related.php?pageid='+pid+'&pagepath='+p, 'tv_related');
  currVideoPath = p;
  
}
