$(document).ready(function () {
    $('#homepageSlider').jcarousel();



    $('#homepageSlider li a').each(function () {
        if ($(this).attr('href') == '/Templates/HTML/VideoPlayer.html?videosrc=') {
            $(this).attr('href', '');
        }
    });



    $('#homepageSlider li a').each(function () {
        if ($(this).attr('href') != "") {
            $(this).attr('rel', 'colorbox');
        }
        else {
            $(this).attr('href', $(this).find('img').attr('src'));
            $(this).attr('rel', 'colorboxa');
        }
    });

    $("a[rel='colorboxa']").colorbox({ photo: true });
    $("a[rel='colorbox']").colorbox({ width: "660px", height: "490px", iframe: true });

});
