$(document).ready(function(){
	
	$(".clients_gallery").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		auto: 4000,
		speed: 1000,
		visible: 5,
		circular: true
    });
	
    $("a[rel^='prettyPhoto']").prettyPhoto();

	Cufon.replace('#top-nav a', {
				textShadow: '#333 1px 1px'
	});
	Cufon.replace('h2, h3, #numbers');

	$('#top-nav > ul li > ul').addClass('level-1');
	$('#top-nav > ul li > ul li > ul').removeClass('level-1');
	$('#top-nav > ul li > ul li > ul').addClass('level-2');

	$('#top-nav li').hover(function() {
		$('ul.level-1', this).show();
	}, function() {
		$('ul.level-1', this).hide();
	});

	$('#top-nav ul li ul li').hover(function() {
		$('ul.level-2', this).show();
	}, function() {
		$('ul.level-2', this).hide();
	});

	$('#top-nav ul ul').append('<li class="last"></li>');
	$('ul.pagesTree-3 > li:nth-child(2)').append('<span class="arrow"></span>');
	$('ul li ul li').append('<span class="line"></span>');

	/**Czyszczenie pola textarea po kliknięciu**/
		$("textarea").focus(function() {
		if( $(this).val() == "Treść wiadomości" ) {
			$(this).val("");
			}
		});

		$("textarea").blur(function() {
		if( $(this).val() == "" ) {
			$(this).val("Treść wiadomości");
			}
		});
	/*********************************************/
	
		$('.back').click(function(){
			history.go(-1);
		});

});



