$(document).ready(function() {    
    $('.gallery').cycle({
        speed: 1000,
        timeout: 3500
    });
    $('.gallery2').cycle({
        speed: 1000,
        timeout: 4000
    });
    $('.gallery3').cycle({
        speed: 1000,
        timeout: 4500
    });
    
	$('.content.scrollable, .appsBlock.scrollable').jScrollPane({
	    verticalDragMinHeight: 20,
        verticalDragMaxHeight: 20
	});

    $(".livreBlock a").colorbox({ inline:true, href:"#livretq", close: 'fermer' });
    $('.gallery a[rel="gallery1"]').colorbox({ 
        next: 'suivant', 
        previous: 'précédent', 
        current: ' ',
        close: 'fermer'
    });
    $('.gallery2 a[rel="gallery2"]').colorbox({ 
        next: 'suivant', 
        previous: 'précédent', 
        current: ' ',
        close: 'fermer'
    });
    $('.gallery3 a[rel="gallery3"]').colorbox({ 
        next: 'suivant', 
        previous: 'précédent', 
        current: ' ',
        close: 'fermer'
    });
    $('#contactForm').validate({
       errorContainer: ".messageBox p",
       onfocusout: true,
       submitHandler: function(form) {
           $('.captchaRow').show();
           if ($('input#captcha').val().length != 0) {
               form.submit();
           }
       }   
    });
    
    $('.refreshCaptcha').click(function() {
        var date = new Date();
        var src = $('#captchaImg').attr('src');
        var newSrc = src.substr(0, src.indexOf('&'));
        newSrc += '&id=' + date.getTime();
        $('#captchaImg').attr('src', newSrc);
        return false;
    });
    
    $('.allNews .media a').colorbox({ close: 'Fermer' });
});
