$(document).ready(function() {

	$("#content-home-swf").fancybox({
		'width'				: '1000',
		'height'			: '500',
		'padding'			: 0,
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
	});
});

$(function(){
	settings = {
		  tl: { radius: 10 },
		  tr: { radius: 10 },
		  bl: { radius: 10 },
		  br: { radius: 10 },
		  antiAlias: true,
		  autoPad: true,
		  validTags: ["div"]
	  }

	$('.content-home-shop').corner(settings);
});

$(document).ready(function() {
	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Zdjecie ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});

$(function () {
	$('img.gallery_image').hide();
	$('img.gallery_image_one').hide();
});

var i = 0;
var int = 0;
$(window).bind("load", function() {
	var int = setInterval("doThis(i)",500);
});

function doThis() {
	var imgs = $('img.gallery_image').length;
	var imgs = $('img.gallery_image_one').length;
	if (i >= imgs) {
		clearInterval(int);
	}
	$('img.gallery_image:hidden').eq(0).fadeIn(500);
	$('img.gallery_image_one:hidden').eq(0).fadeIn(500);
	i++;
}
