﻿$(function() { 
    $(".top-slideshow-box .slideshow").jCarouselLite({
        auto: 5000,
        start: 0,
        btnNext: ".button-slide .next",
        btnPrev: ".button-slide .prev",
        btnGo: [
            ".button-slide .1", 
            ".button-slide .2",
            ".button-slide .3"],
        beforeStart: function(a) {
			$(a).parent().fadeTo(1000, 0);
			var bg = $(a).find('img').attr('src');
			$('.slideshow').css({
				backgroundImage: 'url(' + bg + ')'
			});
		},
		afterEnd: function(a) {
			$(a).parent().fadeTo(1000, 1);
		}
    });
    
    $(".cooperative #cooperative-logo").jCarouselLite({
        auto: 5000,
        start: 0       
    });
});