﻿jQuery(document).ready(function() {

    $(".tip4").click(function() {
        $.fancybox({
            'padding': 5,
            'autoScale': false,
            'title': this.title,
            'titlePosition': 'inside',
            'width': 680,
            'height': 495,
            'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type': 'swf',
            'swf': {
                'wmode': 'transparent',
                'allowfullscreen': 'true'
            }
        });

        return false;
    });

});

