﻿$(document).ready(function() {


$('#slideshow').cycle({fx: 'fade',speed: '3500'});


//walidacja formularza jquery

$('.button').formValidator({
	scope : '#kontakt',
	errorDiv : '.error'
});


$('.button-wycena').formValidator({
	scope : '#wycena-onlinen',
	errorDiv : '.error-wycenan'
});


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


//colorbox
$('.lightbox').fancybox({
	opacity: true,
	overlayOpacity: '0.8',
	titlePosition: 'over'
});


//nav animation

$('nav ul li a').hover(function(){
	$(this).stop(true, false).animate({backgroundPosition: '0px 0px' }, 300, 'swing');
},function(){
	$(this).animate({backgroundPosition: '-222px 0'}, 200, 'swing');
});


// animacja pary

$('#para').hide().fadeIn(1500);


}); //ready end

