//initialize the JQuery PNG fix 
$(document).ready(function(){ 
		$(document).pngFix(); 
});

$(document).ready(function(){
		var currentItem;
		$('li.level1').hover(
			function() { 
				currentItem = $(this).attr('id'); 
				var subNav = currentItem+'sub';
				$('#'+currentItem).css('background', '#54bdde');
				$('#'+subNav).css('display', 'block'); },
			function() { 
				var subNav = currentItem+'sub';
				if(!$('#'+currentItem).hasClass("active")){
					$('#'+currentItem).css('background', 'none');
				}
				$('#'+subNav).css('display', 'none'); 
		});
		$('div.primary-nav-l2').hover(
			function() { 
				$('#'+currentItem).css('background', '#54bdde');
				$(this).css('display', 'block');
			},
			function() { 
				if(!$('#'+currentItem).hasClass("active")){
				$('#'+currentItem).css('background', 'none');
				}
				$(this).css('display', 'none'); 
		});
	});