
function extendableBorderInit(){var newbottomMenuHeight;var contentHeight=$('#content').attr('offsetHeight');var menuHeight=$('#menuArea').attr('offsetHeight');var bottomMenuHeight=$('#bottomMenu').attr('offsetHeight');var isIE6=/msie|MSIE 6/.test(navigator.userAgent);if(isIE6)
newbottomMenuHeight=contentHeight-menuHeight+bottomMenuHeight-16;else
newbottomMenuHeight=contentHeight-menuHeight+bottomMenuHeight;$('#bottomMenu').css("height",newbottomMenuHeight+'px');}
function initShowHide(){$('li.toggle h5').each(function(){var toggleText=$(this).attr('title');if(toggleText=='')toggleText='Open / Close &#9660;';$(this).prepend('<a class="control" title="Show/hide the answer">'+toggleText+'</a>');});$('li.toggle').each(function(){$(this).find('div.contents').hide();$(this).click(function(){var state=$(this).find('div.contents').is(":visible");$('div.contents').hide();if(!state)$(this).find('div.contents').show();else $(this).find('div.contents').hide();});});}
$(document).ready(function(){$('#characterAreaMenu').appendTo('#mainNavigation');extendableBorderInit();initShowHide();$('div.contentBody').resize(function(){extendableBorderInit();});$('div.contentBody').resize();});
