function callFancy(my_href) {
var j1 = document.getElementById("hiddenclicker");
j1.href = my_href;
$('#hiddenclicker').trigger('click');
}
$(document).ready(function () {

    $(".lightbox").fancybox({
      'titlePosition'		: 'outside',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.9
    });
    
    $("a.video").click(function() {
	   $.fancybox({
			'padding'		: 0,
			'overlayShow' : true, 
			'overlayColor'		: '#000',
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: 'ABET - Prezentacja firmy',
			'width'		: 640,
			'height'		: 390,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'		: 'transparent',
			'allowfullscreen'	: 'true',			
			'overlayOpacity'	: 0.9
			}
		});

	return false;
});

});


