$(document).ready(function(){
	
	$("body").removeClass("nojs");
	
	// carousel
	
	/*$(".carousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        auto: 4000,
    	speed: 1000
    });*/
    
    $(".carousel").cycle({
    	fx: 'fade',
        next: ".next",
        prev: ".prev",
    	speed:  1000,
    	timeout: 4000,
    	pager:  '#pager',
    	pagerAnchorBuilder: function(idx, slide) { 
        	return '<a href="#"></a>'; 
    	} 
    });
	
	// slideshow
	
	$('#slideshow').cycle({ 
    	fx: 'fade',
    	speed:  500,
    	timeout: 0,
    	pager:  '#pager',
    	/*pagerAnchorBuilder: function(idx, slide) { 
        	return '<a href="#"></a>'; 
    	}*/
	});
	
});



