// JavaScript Document
$(document).ready(function(){
	
	arrHash = location.hash.substr(1).split("_");
	objV	= document.getElementById(arrHash[0])
	if(objV)
	{
		objV.className = 	"toggle_container";
	}
	
	$(".hide").hide();

	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});

});

