var tplPath = "/wp-content/themes/branfordmagazine-4/";


// Video dynamisch laden
function showVideo(videoID,hideVideoByClass) {

  // Loader anzeigen
  $j('.ajaxLoader').remove();
  $j('#video-content').html("<img class='ajaxLoader' style='margin-top:100px;margin-left:40px;' src='"+tplPath+"images/ajax-loader.gif'>");

  $j.ajax({
    type: "GET",
    url:  tplPath+"ajax/video.php",
    data: "videoID="+videoID+"&showVideo=1",
    success: function(data) {
      $j('.ajaxLoader').remove();
      $j("#video-content").html(data);
    }
  });


  // CSS - aktuelles Video (Link) fett darstellen
  $j('.'+hideVideoByClass+'-link').css('font-weight','normal');
  $j('#videolink-'+videoID).css('font-weight','bold');
}


function getTwick(twick) {
  //alert(twick);
}
