// DOM Loaded 
$(function(){ 
 
    // homepage cycles
    $('#feature_gallery .bigimg').wrapAll('<div class="bigimgs">').parents('#feature_gallery').prepend('<ul id="feature_gallery_pager" class="menu">').cycle({
        fx:'scrollLeft',
        easing: 'swing',
        inDelay:    250,
        drop:       40,
        timeout:    3500,
        pause:      true,
		before:  onBefore,
        slideExpr: '.bigimg',
        pager:      '#feature_gallery_pager',
        pagerAnchorBuilder: function(idx, slide) { 
 
         return '<li><a href="#"><img class="thumb" src="'+slide.id+'" alt="" /></a></li>';
        } 
 
    });
 
$(function() {
    jQuery('#feature_gallery_pager').jcarousel({
        scroll:1
    });
});
 
function onBefore() {
    $('#output').html("Scrolling image:" + this.title);
} 
 
});
 
/* Window load event (things that need to wait for images to finish loading) */ 
//equal heights