// DOM Loaded
$(function(){
    // homepage cycles
    $('#feature_gallery .bigimg').wrapAll('<div class="bigimgs">').parents('#feature_gallery').cycle({
        fx:'fade',
        inDelay:    250,
        drop:       40,
        timeout:    5000,
        pause:      false,
		before:  onBefore,
        slideExpr: '.bigimg'
    });

    $('#feature_gallery2 .bigimg').wrapAll('<div class="bigimgs">').parents('#feature_gallery2').cycle({
        fx:'fade',
        inDelay:    250,
        drop:       40,
        timeout:    5000,
        pause:      false,
		before:  onBefore2,
        slideExpr: '.bigimg'
    });

//Info boxes
function onBefore() {
    $('#output').html(this.title);
}

function onBefore2() {
    $('#output2').html(this.title);
}
});

/* Window load event (things that need to wait for images to finish loading) */
//equal heights

