﻿$(document).ready(function() {

    $('a.DirectorVideo').hover(function() {
        var Index = $(this).attr("Index");
        $("*[id$='VideoList_Title']").html(arrTitle[Index]);
        $("*[id$='VideoList_Description']").html(arrShortDescription[Index]);
    });
    
    $('a.DirectorVideo').click(function() {
        var Index = $(this).attr("Index");
        $("*[id$='Video_Title']").html(arrTitle[Index]);
        $("*[id$='Video_Description']").html(arrLongDescription[Index]);
        $("#SpanEmbedVideo").html('<embed id="embedVideo"  runat="server" width="445" height="266" pluginspage="http://www.apple.com/quicktime/" autoplay="true" cache="true" controller="true" src="/Files/' + arrVideoFile[Index] +'" />');
    });
});

