$(function() {

	$(document).scroll (function() {
		var $top = $('a.top');
		if (!$top.length && document.documentElement.scrollTop > document.documentElement.offsetHeight) {
			$('<a href="#header" class="top" title="idź na początek">wróć</a>').appendTo ('#container');
		} else if (document.documentElement.scrollTop <= document.documentElement.offsetHeight) {
			$top.remove();
		}
	});	
		
	$('div.sidebar a[href=uslugi-elektryczne\#' + location.hash.split ('#')[1] + ']').parent().addClass ('this');
	
	$('div.sidebar ul.uslugi li a').live ('click', function() {
		$(this).parents ('ul:first').find ('li').removeClass ('this');
		$(this.parentNode).addClass ('this');
		
	});
	
	$('div.section-about h2').airport (['PROMOCJA', 'GWARANCJA']);	
});