


 
// DOM Loaded 
$(function(){ 
     
    //init js styles 
    $('body').addClass('hasJS'); 
     
	 
    // homepage cycles 
  
 		$('#feature_gallery .bigimg').wrapAll('<div class="bigimgs">').parents('#feature_gallery').after('<ul class="menu" id="feature_gallery_pager">').cycle({ 
 		fx: 'fade',
 		easing: 'linear',
        delay:    -2000, 
//        drop:       40, 
        timeout:    4000, 
        pause:      1,
		pauseOnPagerHover: 1,
		pagerClick: function(idx,slide) {
			window.location = "http://www.cccewd.net/" + slide.id;  	
		},
		startingSlide: 1,
		autostop: 9,
//		before:  onBefore,
        slideExpr: '.bigimg', 
        pager:      '#feature_gallery_pager',
        pagerAnchorBuilder: function(idx, slide) { 
          	if (!(slide.title=="images/CCCEWD_closing")) {
            return '<li id="'+slide.id+'"><a href="'+slide.id+'"><img src="'+slide.title+'_thumb.png" class="thumb" border="0"><span></span></a></li>';
		//	return '<li><a href="'+slide.id+'" title="'+slide.title+'_thumb_on.jpg"><img src="spacer.gif" class="thumb"><span></span></a></li>';
			}
        } 
		
    });
	
$(function() {
    jQuery('#feature_gallery_pager').jcarousel({
        scroll:1,
		start: 7
    });
});

//$(function() {
//  $('ul#feature_gallery_pager li a.activeSlide').active(function() {
//    $("ul#feature_gallery_pager li a.activeSlide img").attr("src", $(this).attr("title"));
//  });
//});

	
function onBefore() { 
//    $('#output').html("Scrolling image:<br>" + this.id); 
   if (this.title=="images/CCCEWD_compete") {
		$("ul#feature_gallery_pager li a.activeSlide img").attr("src", this.title+'_thumb_on.jpg');  
   }
} 	
     
}); 


/* Window load event (things that need to wait for images to finish loading) */ 
//equal heights 

 
