$(document).ready(function() {
			
    //Initaially hide the content
    $("div.pulldown div").hide();
    $("div.pulldown :header a").prepend('<span class="pulldownstatus">[+]</span>');
    $("div.pulldown :header a").click(function(){
        //$(this).parent().next('div').slideToggle("slow");
		$(this).parent().next('div').animate({
			height: 'toggle'
		 }, 500, function(){
        // return false so any link destination is not followed
		 });
		//$(this).parent().next('div').append('<span class="top"><a href="#top">^ Back to top</a></span>');											
		return false;
    })
    .toggle(function(){
        $(this).children("span.pulldownstatus").text("[-]");
    }, 
    function(){
        $(this).children("span.pulldownstatus").text("[+]");
    });
});
