// powrot do gory

$(function() {
       
	$('a[href=#top]').click(function(){
    	$('html, body').animate({scrollTop:0}, 800);
        return false;
	});
     
});

//podswietlane wiersze na przemian

$(document).ready(function(){
	$(".lotnisko tr:odd").css("background-color", "#F1F4F9"); 
});

// podswietlane wiersze po najechaniu myszka

$(document).ready(function(){
    $("tr").hover(function() {
    	$(this).addClass("highlight");
    }, function() {
    	$(this).removeClass("highlight");
	});
})

// walidacja formularza
$(document).ready(function(){
	$("#commentForm").validate();
});


