/*
 * @copyright 2009 - http://www.4studio.net/
 * @author marek.nowicki@4studio.net
 */

$(document).ready(function() {

   //wywolanie drukowania
	$('a.print').bind('click', function(){
		window.print();
		return false;
	});
   
	//przycisk powrotu
	$('a.back').bind('click', function(){
		history.back();
		return false;
	});

	//naglowki - standardowe
	$('h2.sifr, p.sifr').sifr({
	font: '/theme/js/AllerLight',
		color: '#2f2f2f'
	});

	//naglowki - na stronie glownej
	$('h3.sifr').sifr({
	font: '/theme/js/AllerLight',
		color: '#2f2f2f'
	});

});
