jQuery(document).ready(function(){			

 jQuery("#innermenu div.abscontainer:first").addClass("first");	
  jQuery("a.active").click(function(){return(false);});	
  jQuery("p.sub").hide();	
  jQuery("#menu a.activepage").parent().stop().slideDown("slow");



	jQuery("a.active").click(function(){
					jQuery("p.active:not(p.active:eq("+ jQuery("a.active").index(this) + "))").stop().slideUp("slow");
					jQuery("p.active:eq("+ jQuery("a.active").index(this) + ")").stop().css("height","auto").slideDown("slow");
				
								
 	});

 });


function runSiteScripts(path) {

	
	
// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}


}
