$(document).ready(function(){





	//Cufon

	Cufon.replace
	('#horiz a', {hover: true, textShadow: '0 1px #141F02'})
	('h1', {textShadow: '1px 1px #3B5F06'})
	('h2', {textShadow: '1px 1px #5F4300'});

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

	//gallery hover
	if( $('#gallery-index').get(0) ) {
		$('#gallery-index 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',
		autoDimensions: true
	});





	//formularz kontaktowy

	if( $('form').get(0) ) {

		$("form").validator({
			position: 'top left',
			offset: [6, 115],
			message: '<div><em/></div>',
			lang: 'pl'
		});

	$.tools.validator.localize("pl", {

	'*'			: 'Popraw pole',
	':email'  	: 'Nieprawidłowy email',
	':number' 	: 'Tylko liczby!',
	':url' 		: 'Nieprawidłowy url',
	'[required]': 'Pole wymagane'

});



	}



}); //ready
