/* create a timeOut function in jQuery */
    jQuery.fn.idle = function(time){
        return this.each(function(){
            var i = $(this);
            i.queue(function(){
                setTimeout(function(){
                i.dequeue();
                }, time);
            });
        });
    };
$(document).ready(function(){
	// fancy box
	$("a.videoLink").fancybox({
		scrolling 		: 'no',
		titleShow		: false,
		width			: 	960,
		height			:	460,
		overlayOpacity	:	.7
						
	});
	

});

