$(function() {
    $('#bannerImages').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 5000,
		slideExpr: 'img'
    });
});

$(document).ready(function(){
	$('#gallery a').fancybox();
	$('a.fbb').fancybox();
	$('a.fancybox').click(function() {
                 $.fancybox({
                  'padding'             : 0,
                  'autoScale'   		: false,
                  'transitionIn'        : 'elastic',
                  'transitionOut'       : 'elastic',
                  'title'               : this.title,
                  'width'               : 680,
                  'height'              : 495,
                  'href'                : this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
                  'type'                : 'swf',    // <--add a comma here
                  'swf'					: {
				  'allowfullscreen'		: 'true'
				  }
                  });
                 return false;
            });
	$('.fancymybox a').fancybox({
		'hideOnContentClick': true,
		'width' : 950
	});
});
