jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery('#example1').bxCarousel({
        display_num: 6,
        move: 2,
        prev_image: '/themed/zarate/images/icon_arrow_left.png',
        next_image: '/themed/zarate/images/icon_arrow_right.png',
        margin: 10
    });
    jQuery("a#example4").fancybox();
    jQuery("a.footer").fancybox();
    jQuery("a[rel=example_group]").fancybox({
        'transitionIn'		: 'none',
        'transitionOut'		: 'none',
        'titlePosition' 	: 'over',
        'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">' +  (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });
    jQuery("#video1,#video2,#video3").click(function() {
        $.fancybox({
            'padding'		: 0,
            'autoScale'		: false,
            'transitionIn'	: 'none',
            'transitionOut'	: 'none',
            'title'		: this.title,
            'width'		: 640,
            'height'		: 385,
            'href'		: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type'		: 'swf',
            'swf'		: {
                'wmode'             : 'transparent',
                'allowfullscreen'   : 'true'
                }
        });

        return false;
    });
})

