$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load

	if($(".toggle_container")){	

		$(".toggle_container").hide(); 

	

		//Switch the "Open" and "Close" state per click

		$("h2.trigger").toggle(function(){

			$(this).addClass("active");

			}, function () {

			$(this).removeClass("active");

		});

	

		//Slide up and down on click

		$("h2.trigger").click(function(){

			$(this).next(".toggle_container").slideToggle("slow");

		});

	}

		
		<!-- custom functions for resizing -->
		if( $('#supperWrapper').height() < $('#wrapper').height())
		{
			$("#supperWrapper").css("height",$('#wrapper').height()+"px");
		}
		else
		{
			$("#supperWrapper").css("height","100%");
		}
		
		$(window).bind('resize', function(){
			
			if( $('#supperWrapper').height() < $('#wrapper').height())
			{
				$("#supperWrapper").css("height",$('#wrapper').height()+"px");
			}
			else
			{
				$("#supperWrapper").css("height","100%");
			}	
					
		});
			<!-- resizing ends -->


});








