$(document).ready(function() {
	$("a[rel=hidden1]").click(function(){
    
    	$("#hidden_1, #hidden_2").removeClass("active");
    	
		$("#hidden_2").css("display", "none");

		$("#hidden_1").animate({
			height: ['toggle', 'swing'],
			opacity: 'toggle'
			}, 500, 'linear'
		);
	});
		           
	$("a[rel=hidden2]").click(function(){
		
		$("#hidden_2, #hidden_1").removeClass("active");
    
		$("#hidden_1").css("display", "none");

		$("#hidden_2").animate({
			height: ['toggle', 'swing'],
			opacity: 'toggle'
			}, 500, 'linear'
		);
		
	});
});

