﻿function openFancyBoxVideo(obj, width, height) {
    $.fancybox({
        'padding': 0,
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'title': obj.title,
        'width': width,
        'height': height,
        'href': obj.href,
        'type': 'swf',
        'hideOnOverlayClick': false
    });
    return false;
}

function InitVideos() {
    $(".videoEmbedFancy").each(function() {
        var img = $(this).find("img");
        var myLeft = ($(img).width() / 2) - 24;
        var myTop = ($(img).height() / 2) - 24;
        var span = $(this).find("span");
        $(span).css("top", myTop);
        $(span).css("left", myLeft);
    });

    $(".smallVideo .videoEmbedFancy").css("margin", "5px");
}
