
$(function()
{var navWidth=320;var ulIndent=15;var imgClose='/images/imgOffClosed.gif';var imgOpen='/images/imgOnOpen.gif';var pathname=window.location.pathname;$('#nav').css('width',navWidth+'px');$('#nav ul').css('width',navWidth+'px');$('#nav ul').css('margin-left',ulIndent+'px');$('#nav a').each(function()
{var level=$(this).parents('ul').length;var liWidth=navWidth-(ulIndent*level)+30;$(this).parent('li').css('width',liWidth+'px');});$('#nav li').each(function()
{if($(this).children('ul').length>0)
{if($(this).children('ul').is(":visible"))
$(this).prepend('<img src="'+imgOpen+'" />');else $(this).prepend('<img src="'+imgClose+'" />');}});var slideSpeed='slow';$('#nav a').each(function()
{var thisHref=$(this).attr('href')
if((window.location.pathname.indexOf(thisHref)==0)||(window.location.pathname.indexOf('/'+thisHref)==0))
$(this).addClass('Current');});$('.Current').parent('li').children('ul').show();$('.Current').parents('ul').show();$('#nav li').each(function()
{if($(this).children('ul').length>0&&$(this).children('ul').is(":visible"))
$(this).children('img').attr('src',imgOpen);});$('#nav img').click(function()
{if($(this).parent('li').children('ul').html()!=null)
{$(this).parent('li').parent('ul').children('li').children('ul').hide(slideSpeed);$(this).parent('li').parent('ul').children('li').children('img').attr('src',imgClose);$(this).delay(100).is(':hidden');if($(this).parent('li').children('ul').css('display')=="block")
{$(this).parent('li').children('ul').hide(slideSpeed);$(this).attr('src',imgClose);}
else
{$(this).parent('li').children('ul').show(slideSpeed);$(this).attr('src',imgOpen);}
return false;}});$('#nav li').click(function()
{if($(this).children('a').length==0&&$(this).children('ul').html()!=null)
{$(this).parent('ul').children('li').children('ul').hide(slideSpeed);if($(this).children('ul').css('display')=="block")
$(this).children('ul').hide(slideSpeed);else $(this).children('ul').show(slideSpeed);}});if(false)
{var charBeforeLB=23;var paddingBig=12;var paddingSmall=8;var maxLIHeight=50;$('#nav > li').each(function()
{var childText=$(this).children('a').text();var topPadding=paddingBig;if(childText.length<charBeforeLB)topPadding=paddingSmall;if($(this).height()<maxLIHeight)
{if($(this).children('a').attr('class')=="Current")
$(this).parent('li').children('img').attr('src',imgOpen);else $(this).parent('li').children('img').attr('src',imgClose);}
else $(this).children('img').attr('src',imgOpen);});}});
