﻿Cufon.replace('#realizacja')('h1, h2', {
	textShadow: '#000 2px 2px'
})('.home #nav', {
	textShadow: '#000 2px 2px',letterSpacing: '2px',hover: true
})('.sub #nav', {
	letterSpacing: '1px',hover: true
});



$(document).ready(function() {

//colorbox
$(".lightbox").fancybox();


// fade in bg

$('#bg').hide().fadeIn(1700, 'swing');

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

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

//hover dla menu górnego
$('#nav li').mouseenter(function(){
	$(this).stop(true, false).animate({marginTop:7}, 300, 'swing');
});
$('#nav li').mouseleave(function(){
	$(this).animate({marginTop:0}, 300, 'swing');
});



// links containing images

	$('a').hover(function(){
		$(this).find('img').animate({opacity: .8}, 200);
	}, function(){
		$(this).find('img').animate({opacity: 1}, 200);
	});




}); //ready end
