$(document).ready(function() {
                    
                $(".video").click(function() {
                    $.fancybox({
                        'padding'		: 0,
			'autoScale'		: true,
			"transitionIn"          : "elastic",
                        "transitionOut"         : "elastic",
                        "speedIn"		: 1000, 
                        "speedOut"		: 500, 
                        "overlayShow"           : true,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			    'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
                    });

		return false;
                });
           
                $("#imageScroller1").imageScroller({
                        "speed":'4000', 
                        "direction":'left', 
                        "loading":"Ładowanie..."
                });
                
                $("#imageScroller2").imageScroller({
                        "speed":'4000', 
                        "direction":'left', 
                        "loading":"Ładowanie galerii..."
                });

		$("a[rel=zoom2]").fancybox({
                        "transitionIn"	:	"elastic",
                        "transitionOut"	:	"elastic",
                        "speedIn"		:	500, 
                        "speedOut"		:	200, 
                        "overlayShow"	:	true,
                        "type"		    :   "image",
                        "hideOnContentClick" : true,
                        "titlePosition" 	: "over",
                        "titleFormat"       : function(title, currentArray, currentIndex, currentOpts) {
                            return '<span id="fancybox-title-over">Zdjęcie ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
                        }
		});
		
                $("a[rel=zoom3]").fancybox({
                        "transitionIn"	:	"elastic",
                        "transitionOut"	:	"elastic",
                        "speedIn"		:	500, 
                        "speedOut"		:	200, 
                        "overlayShow"	:	true,
                        "type"		    :   "image",
                        "hideOnContentClick" : true,
                        "titlePosition" 	: "over",
                        "titleFormat"       : function(title, currentArray, currentIndex, currentOpts) {
                            return '<span id="fancybox-title-over">Impreza ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
                        }
		});
		
                $("a[rel=zoom1]").fancybox({
                        "transitionIn"	:	"elastic",
                        "transitionOut"	:	"elastic",
                        "speedIn"		:	500, 
                        "speedOut"		:	200, 
                        "overlayShow"	:	false,
                        "type"		    :   "image",
                        "hideOnContentClick" : true
		});
                
		$("a[target='layer'][href]").each(function() { 
				if (this.getAttribute('href').match(/\.(jpe?g|png|gif)(\?|#|$)/i)) { // Image
					$(this).fancybox({
							"transitionIn"	:	"elastic",
								"transitionOut"	:	"elastic",
								"speedIn"		:	500, 
								"speedOut"		:	200, 
								"overlayShow"	:	false,
								"type"          :  "image",
								"hideOnContentClick" : true
								});
				} else { // IFrame
					$(this).fancybox({
							"transitionIn"	:	"elastic",
								"transitionOut"	:	"elastic",
								"speedIn"		:	500, 
								"speedOut"		:	200, 
								"overlayShow"	:	true,
								"type"          :   "iframe",
								"width"         :   "90%",
								"height"        :   "90%"							
								});
				}
			});

	});
