$(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');
			}
		);

	//UL HIGHLIGHTS
	$('#content ul li:odd').css('background-color', '#fdf7e6');

});

