jQuery(document).ready(function(){
		jQuery("#mozvoikko_build_box").hide();
		jQuery("#mozvoikko_changelog_box").hide();
		jQuery("#osx_other_versions_box").hide();
		jQuery("#win_other_versions_box").hide();
		jQuery("#osxspell_build_box").hide();
		jQuery("#osxspell_changelog_box").hide();
		jQuery("#osxspell_problems_box").hide();

		jQuery("#mozvoikko_build").toggle(
		    function () { jQuery("#mozvoikko_build_box").animate({ height: "show", duration: 700, easing:"easeInQuad"}); 
		    	return false; 
		    },
		    function () { jQuery("#mozvoikko_build_box").animate({ height: "hide", duration: 700, easing:"easeOutQuad"}); 
		    	return false; 
		  	}
		);
		jQuery("#mozvoikko_changelog").toggle(
		    function () { jQuery("#mozvoikko_changelog_box").animate({ height: "show", duration: 700, easing:"easeInQuad"}); 
		    	return false; 
		    },
		    function () { jQuery("#mozvoikko_changelog_box").animate({ height: "hide", duration: 700, easing:"easeOutQuad"}); 
		    	return false; 
		  	}
		);
		jQuery("#osx_other_versions").toggle(
		    function () { jQuery("#osx_other_versions_box").animate({ height: "show", duration: 700, easing:"easeInQuad"}); 
		    	return false; 
		    },
		    function () { jQuery("#osx_other_versions_box").animate({ height: "hide", duration: 700, easing:"easeOutQuad"}); 
		    	return false; 
		  	}
		);
		jQuery("#win_other_versions").toggle(
		    function () { jQuery("#win_other_versions_box").animate({ height: "show", duration: 700, easing:"easeInQuad"}); 
		    	return false; 
		    },
		    function () { jQuery("#win_other_versions_box").animate({ height: "hide", duration: 700, easing:"easeOutQuad"}); 
		    	return false; 
		  	}
		);
		jQuery("#osxspell_build").toggle(
		    function () { jQuery("#osxspell_build_box").animate({ height: "show", duration: 700, easing:"easeInQuad"}); 
		    	return false; 
		    },
		    function () { jQuery("#osxspell_build_box").animate({ height: "hide", duration: 700, easing:"easeOutQuad"}); 
		    	return false; 
		  	}
		);
		jQuery("#osxspell_changelog").toggle(
		    function () { jQuery("#osxspell_changelog_box").animate({ height: "show", duration: 700, easing:"easeInQuad"}); 
		    	return false; 
		    },
		    function () { jQuery("#osxspell_changelog_box").animate({ height: "hide", duration: 700, easing:"easeOutQuad"}); 
		    	return false; 
		  	}
		);
        jQuery("#osxspell_problems").toggle(
            function () { jQuery("#osxspell_problems_box").animate({ height: "show", duration: 700, easing:"easeInQuad"});
                return false;
            },
            function () { jQuery("#osxspell_problems_box").animate({ height: "hide", duration: 700, easing:"easeInQuad"});
                return false;
            }
        );
});


