$(document).ready(function() { $(".fancy_youtube").click(function() { $.fancybox({ 'padding' : 0, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', '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; }); $('.fancy_vimeo').click(function() { $.fancybox({ 'type' : 'iframe', 'padding' : 0, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'title' : this.title, 'width' : 640, 'height' : 385, 'href' : 'http://player.vimeo.com/video/' + this.href.replace(/\D/g,'') // +'?autoplay=1' }); return false; }); });