$(document).ready(function(){
	$("#carousel").carousel({ 
		dispItems: 1, 
		autoSlide: true, 
		animSpeed: "slow", 
		autoSlideInterval: 5000,
		loop: true,
		pagination: true
		
		});
	$(".projects .the-rest-of-projects").hide();
	$(".projects .show-all-projects").toggle(function(){
		$(this).parent(".projects").find(".the-rest-of-projects").slideDown("slow");
		$(this).addClass("opened");
		}, function(){
			$(this).parent(".projects").find(".the-rest-of-projects").slideUp("fast");
			$(this).removeClass("opened");
			});
	});


