$(document).ready(function() {
	$('.pics').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 0,
		next:   '.next',
		prev:   '.prev'
	});
	$('.pics2').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 0,
		next:   '.next2',
		prev:   '.prev2'
	});
	$('.pics3').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 0,
		next:   '.next3',
		prev:   '.prev3'
	});	
	$('.pics4').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 0,
		next:   '.next4',
		prev:   '.prev4'
	});	
	$('.pics5').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 0,
		next:   '.next5',
		prev:   '.prev5'
	});	


	$(".toggle").click(function(){
		$(this).next(".project").slideToggle("slow");
	});
	$(".toggle_open").click(function(){
		$(this).next(".project").slideToggle("slow");
	});
	$(".project").hide();
	$(".show").show(); 
	$(".toggle").toggle(function(){
		$(this).addClass("toggle_active");
		}, function () {
		$(this).removeClass("toggle_active");
	});
	$(".toggle_open").toggle(function(){
		$(this).addClass("toggle_closed");
		}, function () {
		$(this).removeClass("toggle_closed");
	});

});
