/*!
 * Just a lil script to show/hide nav items
 * Using JQuery, woot.
 */
$(document).ready(function() {  
	
	//$(".toggle_container").hide();
	//$(".active").show();
	/*
	$("h2.trigger").click(function(event){
		event.preventDefault();
		$(this).toggleClass("active").next().slideToggle("slow");
	});*/
	
	$(".toggle_container:not(.active)").hide();
	$("h2.trigger").click(function(event){
		event.preventDefault();
		$(this).next().slideToggle("slow");
		
	});
	
	
	//spectrum();  			
	function spectrum(){  
		var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';  
		$('h1.home').animate( { color: hue }, 2000);  
		spectrum();  
	}  
	
});
