﻿$(document).ready(function ()
{

    InitFancyBox();
    InitImageCycle();
    InitFlowPlayers();
});

function InitFancyBox() 
{
   
    if ($("a.fancyboxgroup").length > 0)
        $("a.fancyboxgroup").fancybox();
}
function InitImageCycle()
{
    if ($(".imagecyclefade").length > 0)
    {
        $('.imagecyclefade').cycle({
            fx: 'fade',
            timeout: 5000
        });
    }


}
function InitFlowPlayers()
{
    if ($("a.flowplayeritem").length > 0)
    {
        $("a.flowplayeritem").each(function ()
        {
            //flowplayer($(this).attr("id"), "/SiteContent/Common/flowplayer/flowplayer-3.2.7.swf");
            flowplayer($(this).attr("id"), "/SiteContent/Common/flowplayer/flowplayer-3.2.7.swf", {
                play: { opacity: 0 }
            });
        });
    }
}
