jQuery().ready(function(){
			jQuery('#navigation').accordion({
				active: false,
				header: '.head',
				navigation: true,
				event: 'mouseup',
				fillspace: true,
				//animated: 'easeslide',
				});
		});
			
		function ahah(url, target) {
		  //document.getElementById(target).innerHTML = ' Fetching data...';
		  if (window.XMLHttpRequest) {
			req = new XMLHttpRequest();
		  } else if (window.ActiveXObject) {
			req = new ActiveXObject("Microsoft.XMLHTTP");
		  }
		  if (req != undefined) {
			req.onreadystatechange = function() {ahahDone();};
			req.open("GET", url, true);
			req.send("");
		  }
		}  
		
		function ahahDone() {
		  if (req.readyState == 4) { // only if req is "loaded"
			if (req.status == 200) { // only if "OK"
			
			  document.getElementById('bodyCopy').innerHTML = req.responseText;
			  fadeInContent();
			} else {
			
			  document.getElementById(target).innerHTML=" AHAH Error:\n"+ req.status + "\n" +req.statusText;
			  
			}
		  }
		}
		
		function load(name, div) {
			ahah(name,div);
		}