$(document).ready(function() {
   
    $("a.fb1").fancybox({
          'type'          : 'image',
          'changeSpeed'   : 100,
        	'transitionIn'  : 'elastic',
        	'transitionOut'	: 'elastic',
        	'speedIn'       : 350,
          'overlayColor'  : '#000',
          'overlayOpacity': 0.6,
          'titlePosition' : 'inside',
          'padding'		: 1,  
        	'speedOut'		  :   200
    });
       
    $("a#fbvideos").fancybox({
          'changeSpeed'   : 100,
        	'transitionIn'  : 'elastic',
        	'transitionOut'	: 'elastic',
        	'speedIn'       : 350,
          'overlayColor'  : '#000',
          'overlayOpacity': 0.6,
          'titlePosition' : 'inside',
          'padding'		: 0,  
        	'speedOut'		  :   200
    });
    
	$(".youtube").click(function() {
		$.fancybox({
			'autoScale'		: false,
			'transitionIn'  : 'fade',
      'transitionOut'	: 'fade',
      'speedIn'       : 350,
      'speedOut'		  : 200,
      'overlayColor'  : '#000',
      'overlayOpacity': 0.6,
      'titlePosition' : 'inside',
      'padding'		: 0,  
			'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;
	});

    
}); 


