$(document).ready(function() {
						   
	// USUWANIE FOCUSA
	$('a').attr('onfocus', 'blur()');
	
	// PŁYNNY POWRÓT DO GÓRY
	$('a[href="#top"]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	
	// WCIĘCIE MINIATUR W AUTOGALERII
	$('ul.autogaleria li:odd').css('float','right');
	
	// KOLOROWANIE TABELI
	$('table').each(function(){
		$(this).find('tr:odd td').addClass('wyrozniony');
	});
	
});

// ŚRODKOWANIE WARSTWY W PIONIE
$.fn.vAlign = function() {
	return this.each(function(i){
		var ah = $(this).height();
		var ph = $(window).height();
	//	var ph = $(this).parent().height();
		var mh = (ph - ah) / 2;
		if (mh < 0) {
			mh = 0;
		}
		$(this).css('margin-top', mh);
  });
};

$(document).ready(function() {
	$("div.main-index").vAlign();
});

$(window).bind('resize', function(){
	$("div.main-index").vAlign();
});
