﻿$(document).ready(function () {

    // tabs control
    $('#tabs_items .tabsitem').hide();
    $('#tabs_items .tabsitem:first-child').show();

    //tabs link click
    $('#tabs_navigation a').click(function () {
        var link_target = $(this).attr("href");
        $('#tabs_navigation a.current_tab').removeClass('current_tab');
        $(this).addClass('current_tab');
        $('#tabs_items .tabsitem').hide(200);
        $(link_target).show(500);
        return false;
    });

    //fancybox
    $("#embedvideo1").click(function () {
        $.fancybox({
            'padding': 0,
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'title': this.title,
            'width': 680,
            'height': 495,
            'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type': 'swf',
            'swf': {
                'wmode': 'transparent',
                'allowfullscreen': 'true'
            }
        });
        return false;
    });

    $("#embedvideo2").click(function () {
        $.fancybox({
            'padding': 0,
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'title': this.title,
            'width': 680,
            'height': 495,
            'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type': 'swf',
            'swf': {
                'wmode': 'transparent',
                'allowfullscreen': 'true'
            }
        });
        return false;
    });

});
