﻿$(document).ready(function() {
	
$('img').pngFix(); 
	
//fancybox
$("a.lightbox").fancybox({	
	titlePosition: 'over',
	transitionIn: 'elastic',
	transitionOut: 'fade',
	easingIn: 'easeOutBack'
});

//walidacja formularza jquery
$('.button').formValidator({
	scope : '#kontakt',
	errorDiv : '.error'
});

//animacja logo
$('#logo').fadeIn(3000);

//animacja sofy
$('#sofa').animate({top:0}, 2000, 'easeOutBounce');

$('#czysofy').animate({top:0}, 1500, 'easeOutBounce');

//lavalamp top-menu
$('#top_menu').lavaLamp({ 
	fx: 'easeOutBack', 
	speed: 700 
});


//add class last
$('aside ul li:last-child').addClass('last');

//add span >> article li
$('article li').prepend('<li class="red"></li>');


//hover >> aside
$('aside li').hover(function(){
	$(this).stop(true, false).animate({width: 190, paddingRight:10}, 500, 'easeOutBack');
},
function(){
	$(this).animate({width: 200, paddingRight:0}, 500, 'easeOutBack');
});




}); //ready end



