jQuery().ready(function() {
// runs when the page is done loading
$('#pict4 .gallery2').cycle({
    fx:     'fade',
    speed:  1000,
    timeout: 0,
    next:   '#pict4 .next',
    prev:   '#pict4 .prev'
    });

$('#pict3 .gallery2').cycle({
    fx:     'fade',
    speed:  1000,
    timeout: 0,
    next:   '#pict3 .next',
    prev:   '#pict3 .prev'
    });

$('#pict2 .gallery2').cycle({
    fx:     'fade',
    speed:  1000,
    timeout: 0,
    next:   '#pict2 .next',
    prev:   '#pict2 .prev'
    });

$('#pict .gallery').cycle({
    fx:     'fade',
    speed:  1000,
    timeout: 0,
    next:   '#pict .next',
    prev:   '#pict .prev'
    });
$('#home').cycle({
    fx:     'fade',
    speed:  1000,
    delay:  500
    });
});