$(document).ready(function(){

	//fonts
	Cufon.replace('.nav', {hover: true})('.cuf')('h1')('.sub h1', {textShadow: '3px 3px #CFC4B5'})('h2', {textShadow: '2px 2px #CFC4B5'});

	//slideshow
	if( $('.slidetabs001').get(0) ) {

		$(".slidetabs").tabs(".images > div", {
		effect: 'fade',
		fadeInSpeed: 3200,
		fadeOutSpeed: 3200,

		rotate: true
	}).slideshow({
		autoplay: true,
		//interval: 2300
	});
}

	//slideshow cycle
	$('.images').cycle({
		fx: 'fade',
		speed: 2300,
		pause: 1,
		timeout: 4000

	});


	$('ul li:last-child').addClass('last');

	//gallery hover
	if( $('#gallery').get(0) ) {

		$('#gallery li').hover(function(){
			$(this).siblings().stop(true, false).animate({opacity: '0.8'}, 'fast');
		}, function(){
			$(this).siblings().animate({opacity: '1'}, 'fast');
		});
	}

	//lightbox
	$('a.lightbox').fancybox({titlePosition: 'over'});

	//formularz kontaktowy
	if( $('#kontakt').get(0) ) {

	$("#kontakt").validator({
		position: 'top left',
		offset: [1, 100],
		message: '<div><em/></div>',
		lang: 'pl'
	});

	$.tools.validator.localize("pl", {
		'*'			: 'Popraw poniższe pole',
		':email'  	: 'Nieprawidłowy adres email',
		':number' 	: 'Dozwolone są tylko liczby',
		':url' 		: 'Podaj prawidłowy adres url',
		'[max]'	 	: 'Za dużo znaków',
		'[min]'		: 'Za mało znaków',
		'[required]': 'To pole jest wymagane'
	});
	}


}); //ready

