$(document).ready(function(){
    
    if ($('#newsletterForm').submit(function(){
        var regex = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;
        return regex.test($('#newsletterEmail').val());
    }));
    
    $("ul#menu li a:not(.active)").hover(function(){
        $(this).animate({
            paddingLeft: '+=12'
        }, 150);
    },
    function(){
        $(this).animate({
            paddingLeft: '-=12'
        }, 100);
    });

  	$("#flashLogos").flash({
		src: 'swf/scroll.logotypes.swf',
		id: 'flogos',
		wmode: 'transparent',
		width: 820,
		height: 73 },
        { version: 8 }
    );
  
    //$('ul.galeria > li').eq(4).addClass('last');
    //$('ul.wyjazdyGal li').eq(4).addClass('last');
    
    $('ul.wyjazdyGal').each(function(){
        $('ul.wyjazdyGal li:nth-child(5n)').addClass('last');
    });
    
    
    $('ul#wyjazdyList li:last-child, ul#kontaktList li:last-child, ul#wyjazdyMenu li:last-child').addClass('last');
    
    if ($('#contactForm').length)
        $('#contactForm').validate();
        
    if ($('#zapytanieForm').length)
        $('#zapytanieForm').validate();
        
    $('#zadajPytanieFormArea').hide();
    $('#wyjazdyMenu li.zadajPytanie a').toggle(function(){
        $('#zadajPytanieFormArea').slideDown();
    }, function(){
        $('#zadajPytanieFormArea').slideUp();
    })
    
});

