$(document).ready(function() {
$("#to-display").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');

$("a.slide-down").click(function() {
if($(this).next("div").css("display") == "none") {
    $("div.slide-down").hide();
		$(this).next("div").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
}
else {
		$(this).next("div").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
}
return false;
});




/*
$("a.slide-down").toggle(function() {
    $("div.slide-down").hide();
		$(this).next("div").animate({
			height: 'show',
			opacity: 'show'
		}, 'fast');
	}, function() {
    $("div.slide-down").hide();
		$(this).next("div").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});



$("a").click(function() {
		$("a").next().hide();
	});



$("a").toggle(function() {
		$(".stuff").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	}, function() {
		$(".stuff").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	});
	*/


});
