/*
	Plik na licencji Creative Commons, http://creativecommons.org/licenses/by-nc-sa/3.0/deed.pl
	autor: Dawid Horodecki, http://horodecki.eu
	
	za wyjątkiem:
		addGoogleStats() - Rafal Lindemann, http://rl.stamina.pl
		preloadImages() - Matt Farina, http://www.mattfarina.com/
*/


function addGoogleStats() {
	var GAID = 'UA-1284557-2';
	var head = document.getElementsByTagName('head')[0];
	var scr = document.createElement('script');
	scr.type = 'text/javascript';
	scr.src = (location.protocol == 'http:' ? 'http://www.' : 'https://ssl.') + 'google-analytics.com/'+'urchin.js';
	var once = 0;
	
	function runMe() {
		if (scr.readyState == 'loading' || urchinTracker == undefined || once) { return; }
		clearInterval(timer);
		once++;
		_uacct = GAID;
		urchinTracker();
	}
	
	var timer = setInterval(runMe, 3000);
	scr['onload'] = runMe;
	scr['onreadystatechange'] = runMe;
	head.appendChild(scr);
}


function start() {
	// -- Ukrywanie elementow
	
	$('#kontakt').hide();
	$('#poprzednie').hide();
	$('#nastepne').hide();
	$('#ilosc').hide();
	
	
	// -- Pokazywanie chmurki z kontaktem
	
	$('#naglowek').hover( function() {
		$('#kontakt').fadeIn('fast');
		//ishover = 1;
	}, function() {
			$('#kontakt').fadeOut('fast');
	});
	
	
	// -- Nastepne i poprzednie zdjecie
	
	$('#foto dt').hover( function() {
		$('#poprzednie').show();
		$('#nastepne').show();
		$('#ilosc').show();
	}, function() {
		$('#poprzednie').hide();
		$('#nastepne').hide();
		$('#ilosc').hide();
	});
	
	
	// -- Wywolanie funkcji statystyk Google
	
	addGoogleStats();
}


$(document).ready(start);
