    Cufon.replace('h2,h1', {fontSize: '16px', fontWeight: 300, color: '#000'})    Cufon.replace('.cufon', {fontSize: '16px', fontWeight: 200, color: '#7c7c7c'});	Cufon.replace('.refers', {fontSize: '16px', fontWeight: 300, color: '#783a13 !important'});	Cufon.replace('#menu', {fontSize: '23px', color: '#FFF', fontWeight: 400});		function theRotator() {		$('ul#rotator li').css({opacity: 0.0});		$('ul#rotator li:first').css({opacity: 1.0});		setInterval('rotate()',6000);	}	function rotate() {			var current =  ($('ul#rotator li.show')?  $('ul#rotator li.show') : $('ul#rotator li:first'));		var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('ul#rotator li:first') :current.next()) : $('ul#rotator li:first'));		next.css({opacity: 0.0})		.addClass('show')		.animate({opacity: 1.0}, 1000);		current.animate({opacity: 0.0}, 1000)		.removeClass('show');	};			$(document).ready(function() {		$("a[rel=img_group]").fancybox({			'transitionIn'		: 'none',			'transitionOut'		: 'none',			'titlePosition' 	: 'over',			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {				return '<span id="fancybox-title-over">Zdjęcie: ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';			}		});				theRotator();			});		
