﻿$(document).ready(function()
{
    $("span.video").each(function()
    {
        var currentVideoID = $(this).attr("id");
        var videoPlayerID = $(this).parent().attr("id");
        
        $(this).remove();

        RenderVideoPlayer(videoPlayerID, currentVideoID, null, true);
    });

    $("div.faq-title").click(function() {
        $(this).next().toggle();
        if ($(this).children("img").attr("src").indexOf("-off") != -1) {
            $(this).children("img").attr("src", $(this).children("img").attr("src").replace("-off", "-on"));
        }
        else {
            $(this).children("img").attr("src", $(this).children("img").attr("src").replace("-on", "-off"));
        }
    });
});
