$(function () {
   $("a[href$='.jpg']").fancybox({
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
        'transitionOut'	: 'elastic',
        'hideOnContentClick': true
			});
       
      
  $("a[href^='http://www.youtube']").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
      'autoplay' : 1,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/')+'&autoplay=1&fs=1',
			'type'			: 'swf',
			'swf'			: {
			   'wmode' : 'transparent',
			   'allowfullscreen' : 'true',
         'autoplay' : '1'
			           }
		});
		return false;
	});   
  
  
  /*$('a.media-video').media({width:450, height:380, params:{'allowFullScreen': 'true'}, flvKeyName:'flv', flashvars:{showstop:1,showvolume:1,showtime:1,showfullscreen:1,width:450, height: 380}});*/
  
  $("a[href$='.flv']").click(function() {
    //alert('ok');return false;
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
      'autoplay' : 1,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 400,
			'href'			: '/mod/flvplayer/player_flv_maxi.swf',
			'type'			: 'swf',
			'swf'			: {
			   'wmode' : 'transparent',
			   'allowfullscreen' : 'true',
         'autoplay' : '1',
         'flashVars' : 'flv='+this.href+'&amp;autoplay=1&amp;showvolume=1&amp;showtime=1&amp;showfullscreen=1'
			   }
		});
		return false;
	});
  
            
});

  

