
//--------------------------------------------------------------------------------
// Top Nav Hilighter
//--------------------------------------------------------------------------------
jQuery(document).ready(function(){
	
	jQuery("#nav a").fadeTo(0, 0.6); // set all to half opacity
	jQuery("#nav a").hover(function(){
		jQuery(this).fadeTo(75, 1.0); // set the opacity to 100% on hover
	},function(){
		/* Check Path ------------------------- */
		var myURL = ""+window.location;
		var removehttp = myURL.split('//');
		var removedomain = removehttp[1].split('/');
		if(removedomain[2] != undefined){
			var myDir = removedomain[2];
		} else {
			var myDir = "Home";
		}
		/* ------------------------------------ */
		if ((this).className != myDir){
			jQuery(this).fadeTo(75, 0.6); // This should set the opacity back to 60% on mouseout
		}
	});
});
$(document).ready(function(){ // fade current page menu item to full opacity
		/* Check Path ------------------------- */
		var myURL = ""+window.location;
		var removehttp = myURL.split('//');
		var removedomain = removehttp[1].split('/');
		if(removedomain[2] != undefined){
			var myDir = removedomain[2];
		} else {
			var myDir = "Home";
		}
		/* ------------------------------------ */
		jQuery("."+myDir).fadeTo(60, 1.0);

});

