function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
$(document).ready(function(){
	$.get('/ajax/menu_js.html',function(data){
		$('#leftcol').html(data);
		$('.leftmenu a[href="'+document.location.href+'"]').parent().find('ul').css('display','block');
		if($('.leftmenu a[href="'+document.location.href+'"]').parent().parent().attr('class')!='leftmenu'){
			$('.leftmenu a[href="'+document.location.href+'"]').parent().parent().css('display','block');
		}
	});
	$.get('/ajax/right_js.html',function(data){
		$('#rightcol').html(data);
	});
	$.get('/ajax/footer_js.html',function(data){
		$('body').append(data);
	});
	$('head').append('<script src="/Scripts/AC_RunActiveContent.js" type="text/javascript">');
    
});
