$(document).ready(function(){
	$("#content_image").css({ opacity: 0.1 });
	$("#content_image").fadeTo(900, 1.0);
	$("#content_image_overlay").css({ opacity: 0.1 });
	$("#content_image_overlay").fadeTo(2000, 1.0);
	$("#content_box").css({ opacity: 0.1 });
	$("#content_box").fadeTo(1400, 1.0);
	$("#sidebar").css({ opacity: 0.1 });
	$("#sidebar").fadeTo(1800, 1.0);


	$("ul.footer li").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("ul.footer li").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
			},function(){
	$(this).fadeTo("fast", 0.6); // This should set the opacity back to 30% on mouseout
			});



});

$(document).ready(function() {

	// Using custom configuration
	$("#klanten_slider").carouFredSel({
		items				: 5,
		direction			: "left",
		scroll : {
			items			: 1,
			easing			: "easeOutBounce",
			duration		: 500,							
			pauseOnHover	: true
		}					
	});	
});

