$(document).ready(function() {
	
	//SUBNAV ACTIVE STATE
	
	$('li.current_page_item > a').addClass('active');
	
	// MAIN NAV ACTIVE STATE
	
	var path = window.location.pathname;
	
	if(path.match('about-us')) {
		$('#menu-item-86 a').addClass('active');
		$('#sidebar ul li:first-child').before('<li><a href="/about-us">Our Mission</a></li>');
	}	
	
	if(path.match('help-desk')) {
		$('#menu-item-89 a').addClass('active');
		$('#sidebar ul li:first-child').before('<li><a href="/help-desk">Common Requests</a></li>');
	}	
	
	//SLIDESHOW	
	$('#slideshow').innerfade({
			speed: 750,
			timeout: 7000,
			type: 'sequence',
	});
/*
	//UL HIGHLIGHTS
	$('#content ul li:odd').css('background-color', '#fdf7e6');
*/

  
});

//FORM TRACKING

var _gaq = _gaq || [];
  _gaq.push(['_setAccount', '*******']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
