



function closeHelpDiv(){
$('#overlay').fadeOut('slow');

}


jQuery(document).ready(function() {






								
	var container = $('#thumblist'); //better call the whole thing from
    var startPlace = $('a',container).index($('.active',container));
				
    jQuery('#mycarousel').jcarousel({
        // Uncomment the following option if you want items
        // which are outside the visible range to be removed
        // from the DOM.
        // Useful for carousels with MANY items.
          auto: 9,
        wrap: 'last',
		buttonNextHTML: null,
		buttonPrevHTML: null


      //itemVisibleOutCallback: {onAfterAnimation: function(carousel, item, i, state, evt) { carousel.remove(i); }},
        //itemLoadCallback: mycarousel_itemLoadCallback		
    });
	
	

     $(".gsc_thumb_row").hover(function(){ $("img", this).fadeTo(.2, .70, function() { $(this).fadeTo("normal", 1); }); }, function(){	});



});



