try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

function randomPics ( i ) {
	thefile = new Array(
		'http://www.stomatologiagrzesiak.pl/wp-content/themes/sg/img/usta.jpg'
	);
	
	theURL = new Array(
		'http://www.stomatologiagrzesiak.pl/gabinet-stomatologiczny-grzesiak-2'
	);

	i=i+1;

	jQuery("#ct .fl img").animate({opacity: 1}, 3500).animate({opacity: 0}, 'slow', function () {
		jQuery(this).attr("src", thefile[i%2]);
		jQuery("#ct .fl a").attr("href",theURL[i%2]);
	} ).animate({opacity: 1}, 'slow');
	
	
	
	timeout = setTimeout('randomPics('+i+')', time);
}


jQuery(document).ready(function()
{

	time = 4000;

	jQuery('a[rel="external"]').click( function() {
		window.open( jQuery(this).attr('href') );
		return false;
	});
	
	//timeout = setTimeout('randomPics(0)', time);

});
