/**
*
*	Tweaks
*
*/

// Simple jQuery script that changes the background of the current page in the navigation.

jQuery(document).ready(function(){

	var currentSelectedItem		=		jQuery("#nav_784636 .selected").attr("id");
	jQuery("#" + currentSelectedItem + " a").addClass(currentSelectedItem + "-selected");
	
	/*
	jQuery("ul#nav_805564 li:even").addClass("footer-alpha");
	jQuery("ul#nav_805564 li:odd").addClass("footer-omega");
	*/
	
	//..
	console.log(window.location.pathname);

	var currentPathName	=	window.location.pathname;
	if(currentPathName === '/about-us')		{
	
		jQuery('#link-about-us a').addClass('selected');
	
	}
	
});
