$(document).ready(function() {
	  	
	  		//  This hides the divs with class hideContent
			$('div.contentColapse').slideUp('slow'); 
			
			//  This is the function for the global hide and show

			//  This is the function for the element hide and show
			
			$('h2').toggle(function() {
					$(this).addClass("posArrowOpen");
	   				$(this).next().slideToggle('slow');
					},
				
					function(){
				  		$(this).removeClass("posArrowOpen");
				  		$(this).next().slideToggle('slow');
		  			});
					
		});
		
	function showAffForm(){
			$('#affArrow').addClass("posArrowOpen");
			$('#affForm:hidden').slideToggle('slow');
		}