$(function(){

	$('ul li:last-child').addClass('last');
	$('nav li').append('<span />');

	$('nav a').hover(function(){
		$(this).next('span').animate({top: 0}, 'fast');
	}, function(){
		$(this).next('span').stop(true, false).animate({top: 23}, 'fast');
	});

	$('.gallery a').prettyPhoto({theme: 'facebook'});

	$('table tr:first-child').addClass('first');
	$('table tr:even').addClass('even');


//walidacja formularza

$('#error').hide();
$('#contact-form').bind('submit', function(){
	var valid = true;
	$('.required').click(function(){
		$(this).removeClass('error-input');
	});
	$('.required').each(function(){
		if($(this).val()==''){
			$(this).addClass('error-input');
			 valid = false;
		}else{
			$(this).removeClass('error-input');
		}
	});
	if(!valid){
		$('#error').fadeIn();
		return false;
	}
});

$('.required').blur(function(){
	if($(this).val() == ""){
		$(this).addClass('error-input');
	} else {
		$(this).removeClass('error-input');
	}
});


}); // end

