$(document).ready(function(){
	$(".foldouth").hide();
	
	$("h2.foldout").click(function(event){
		event.preventDefault();
		$(this).next(".foldouth:visible").slideUp("fast");
		$(this).next(".foldouth:hidden").slideDown("fast");
	});
	
	$("h2.foldout").toggle(function(){
			$(this).css({"background":"url(img/arrowup.gif) left center no-repeat"}); 
		}, function(){
			$(this).css({"background":"url(img/arrow.gif) left center no-repeat"});
	});
});