jQuery(document).ready(function(){
	
	jQuery.fn.fadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: 'toggle'}, 400);};
	
	jQuery('.top1').click(function(){
	jQuery('.bottom1').slideToggle("slow");
	jQuery('.bottom2, .bottom3, .bottom4, .bottom5, .bottom6').slideUp("slow");
	});
	
	jQuery('.top2').click(function(){
	jQuery('.bottom2').slideToggle("slow");
	jQuery('.bottom1, .bottom3, .bottom4, .bottom5, .bottom6').slideUp("slow");
	});
	
	jQuery('.top3').click(function(){
	jQuery('.bottom3').slideToggle("slow");
	jQuery('.bottom1, .bottom2, .bottom4, .bottom5, .bottom6').slideUp("slow");
	});
	
	jQuery('.top4').click(function(){
	jQuery('.bottom4').slideToggle("slow");
	jQuery('.bottom1, .bottom2, .bottom3, .bottom5, .bottom6').slideUp("slow");
	});
	
	jQuery('.top5').click(function(){
	jQuery('.bottom5').slideToggle("slow");
	jQuery('.bottom1, .bottom2, .bottom3, .bottom4, .bottom6').slideUp("slow");
	});
	
	jQuery('.top6').click(function(){
	jQuery('.bottom6').slideToggle("slow");
	jQuery('.bottom1, .bottom2, .bottom3, .bottom4, .bottom5').slideUp("slow");
	});


	jQuery('.top1').click(function(){
	jQuery('.top2, .top3, .top4, .top5, .top6').animate({opacity: '0.5'});
	jQuery('.top1').animate({opacity: '1'});
	});

	jQuery('.top2').click(function(){
	jQuery('.top1, .top3, .top4, .top5, .top6').animate({opacity: '0.5'});
	jQuery('.top2').animate({opacity: '1'});
	});
	
	jQuery('.top3').click(function(){
	jQuery('.top1, .top2, .top4, .top5, .top6').animate({opacity: '0.5'});
	jQuery('.top3').animate({opacity: '1'});
	});

	jQuery('.top4').click(function(){
	jQuery('.top1, .top2, .top3, .top5, .top6').animate({opacity: '0.5'});
	jQuery('.top4').animate({opacity: '1'});
	});

	jQuery('.top5').click(function(){
	jQuery('.top1, .top2, .top3, .top4, .top6').animate({opacity: '0.5'});
	jQuery('.top5').animate({opacity: '1'});
	});
	
	jQuery('.top6').click(function(){
	jQuery('.top1, .top2, .top3, .top4, .top5').animate({opacity: '0.5'});
	jQuery('.top6').animate({opacity: '1'});
	});
	
	jQuery('.top-start').click(function(){
	jQuery('.top1, .top2, .top3, .top4, .top5, .top6').animate({opacity: '1'});
	jQuery('.bottom1, .bottom2, .bottom3, .bottom4, .bottom5, .bottom6').slideUp("slow");
	});
	
	jQuery('#open').click(function(){
	jQuery('.bottom1, .bottom2, .bottom3, .bottom4, .bottom5, .bottom6').slideDown("slow");
	});
	
	jQuery('#carousel').jcarousel({
    });

	jQuery('.bottom2').hide(0);
});



