$(document).ready(function(){
						   
	// Initializes the accordion navigation
	$("#accordion").accordion({ event: 'click', autoHeight: false, collapsible:true, active:false });
	
	// Initializes the youtube playlist
	$("ul.video").ytplaylist({addThumbs:false, autoPlay: false, holderId: 'ytvideo'});
	
	
	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("h4.trigger").click(function(){
		$(this).toggleClass("on").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
});
