$(document).ready(function() {
	
	/*
//SUBNAV ACTIVE STATE
	$('#sidebar ul li a').each(function() {
		var hreflink = $(this).attr('href');
		if(hreflink.toLowerCase() == location.href.toLowerCase()) {
			$(this).addClass("sidebar-active");
			$(this).parent("li").css("background-color", "#fff");
		}
	});
	
	//NAV DROPDOWN
	$("#providers, #services, #helpdesk, #locations, #news, #about").hoverIntent(
			function () {
				$(this).children().slideDown('fast');
			},
			function () {
				$(this).children("ul").slideUp('fast');
			}
		);
	
	//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);
  })();
