function navSR(){
			//special style for home button
			$('#navBox li:first').addClass('first');
			
			//Add parent to subnav
			//check if we are on a child page
			$('#subNavBox li.sel').each(function(){
			       $.childPage = true;
			});
			//copy the parent link to subnav
			$('#navBox li.sel').clone().insertBefore($('#subNavBox li:first'));
			if ($.childPage){
			    $('#subNavBox li:first').removeClass('sel');
			}
			
			//add any third level nav to selected item
			//first add dotted bullets
			//$('#subSub a').prepend('... ');
			$('#subSub ul').clone().appendTo($('#subNavBox li.sel')).show();
			
			//special people subnav
			$('#peopleSub li.groupHead').prepend('... ');
			$('#peopleSub ul#people').clone().appendTo($('#subNavBox li.sel')).show();
			$('#peopleSub').remove();
			
}
function navSub(){
			$('#subNavBox li:first').removeClass('sel');
			$('#subNavBox li:has(a.sel)').children().css('color','#000').children().children().prepend('... ');
}

function rightBack(){
    bgPath = $('.rightBackground img').attr('src');
    $('#subNavBox').css('background-image','url('+bgPath+')').css('background-repeat','no-repeat').css('background-position','0px 18px');
}