
$(document).ready(function() {	
	
	$("#banner_wyprzedarz_2010").fancybox({
		'padding'			: 0,
		'autoScale'			: false,
		'width'				: 450,
		'height'			: 300,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayShow'		: false,
		'onComplete'		: onComp
	});
	setTimeout("$('#banner_wyprzedarz_2010').trigger('click');", 500);
	
});
function onComp(){
	$("#fancybox-wrap").css({'top':'90px', 'bottom':'auto'});
}

