/*==============================================================================
 Global JS
 @author Bruce Thomas
==============================================================================*/

// IE6 background flicker fix - see: http://www.mister-pixel.com/#Content__state=is_that_simple
try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {}

// initialize jQuery
jQuery.noConflict();

// on Dom ready
jQuery(function($){

	// highlight active global nav item
	$('#menu ul li a:path').each(function() { 
		var currentClass = $(this).attr("class");
		$(this).addClass(currentClass + '-lit'); 
	});
	
	// highlight active RHS SUB_nav item
	$('ul.relatedlist li a:path').each(function() { 
		$(this).addClass('lit'); 
	});

	// highlight active LHS SUB_nav item
	$('.navigation ul li a:path').each(function() { 
		$(this).addClass('lit'); 
	});

});

