// DOM Loaded 
$(function(){ 
	//init js styles 
    $('body').addClass('hasJS'); 	 
    // homepage cycles 
    $('#feature_gallery .bigimg').wrapAll('<div class="bigimgs">').parents('#feature_gallery').prepend('<ul class="menu" id="feature_gallery_pager">').cycle({ 
        fx:'fade', 
        easing: 'swing', 
        inDelay:    250, 
        drop:       40, 
        timeout:    7000, 
		before:  onBefore,
        slideExpr: '.bigimg', 
        pager:      '#feature_gallery_pager', 
        pagerAnchorBuilder: function(idx, slide) {           
            return '<li><a href="#"><img src="img/homeFeatures/thumbnails/'+slide.id+'.jpg" class="thumb"><span></span></a></li>';  
        } 		
    });
	
$(function() {
    jQuery('#feature_gallery_pager').jcarousel({
        vertical:2,
		auto: 28,
		scroll:4
		
    });

});
	
function onBefore() { } 
}); 
/* Window load event (things that need to wait for images to finish loading) */ 
//equal heights 

 
