﻿$(document).ready(function () {
    $("a[rel=tutorial_video]").fancybox({
        'titleShow': false,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic'
    });

    $("#box_video").click(function () {
        $.fancybox({
            'padding': 0,
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'title': this.title,
            'width': 600,
            'height': 340,
            'href': this.href = this.href.replace(new RegExp("([0-9])", "i"), 'moogaloop.swf?clip_id=$1') + '&autoplay=1',
            'type': 'swf'
        });
        return false;
    });
    $("#box_video2").click(function () {
        $.fancybox({
            'padding': 0,
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'title': this.title,
            'width': 600,
            'height': 340,
            'href': this.href = this.href.replace(new RegExp("([0-9])", "i"), 'moogaloop.swf?clip_id=$1') + '&autoplay=1',
            'type': 'swf'
        });
        return false;
    });
});
