$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".lhssubmenu").hide(); 
	$(".subsub").hide(); 
	
	//Switch the "Open" and "Close" state per click
	
/*	$("a.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		//$(this).removeClass("active");
	});*/
	
	$("a.trigger").hover(function(){
		$(".subsub").hide(); 
		$(this).addClass("active");
		$(this).next(".lhssubmenu").slideToggle("slow");
		}, function () {
		$(this).removeClass("active");
	});

	$("a.subtriger").hover(function(){
									$(".subsub").hide(); 
		$(this).addClass("active");
		$(this).next(".subsub").slideToggle("slow");
	}, function () {
		$(this).removeClass("active");
	});
	
	// Slide up and down on click
	/*
	$("a.trigger").click(function(){
	 	$(this).next(".lhssubmenu").slideToggle("slow");
	 });
*/
});

