	//display JWPlayer FLV files 
     $(".flv").click(function() {
       $.fancybox({
         'autoscale' : false,
         'transitionIn' : 'elastic',
         'transitionOut': 'elastic',
         'padding' : 0,
         'title'  : this.title,
         'width'  : 640,
         'height' : 360,
         'type'    : 'swf',
         'href'    : this.href,
         'swf'   : { 'wmode':'transparent', 'allowfullscreen':'true' }
       });
      
       return false;
     });

//display Vimeo video
	$(".vimeo").click(function() {
		$.fancybox({
			'padding'       : 0,
			'autoScale'     : false,
			'transitionIn'  : 'elastic',
			'transitionOut' : 'elastic',
			'title'         : this.title,
			'width'         : 700,
			'height'        : 394,
			'href'          : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type'          : 'swf'
		});
		
		return false;
	});
	
	//display YouTube video
	$(".youtube").click(function() {
		$.fancybox({
				'padding'       : 0,
				'autoScale'     : false,
				'transitionIn'  : 'elastic',
				'transitionOut' : 'elastic',
				'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;
	});
