﻿$(document).ready(function() {
//fancybox
$("a.lightbox").fancybox({	
	titlePosition: 'over'
});

//walidacja formularza jquery
$('.button').formValidator({
	scope : '#kontakt',
	errorDiv : '.error'
});

//animacja logo
$('#logo img').animate({marginTop: '5'}, 1000, 'easeOutBack');

//add class last
$('#top ul li:last-child').addClass('last');

//lavalamp top-menu
$('#top ul').lavaLamp({ 
	fx: 'easeOutBack', 
	speed: 700 
});

//nałożenie png na zdjęcia newsów
$('.item').prepend('<img class="img_over_news" src="images/img-matrix.png" alt="">');


//kolorowanie list
$('<span>- </span>').prependTo('#main li');


//ostatnia fota w .row bez marginesu
$('.row a:last-child').addClass('no_margin');
}); //ready end


