

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


//Script: http://www.saila.com/attic/sandbox/set-height.html
//Sets all divs in a list to the height of the highest div in list
//props! Good script!

function getHeight() {

	var d = document;
	var box = new Array("content_mid","content"); //list of DIV ids

	for(x=0;x<box.length;x++) { //determine the tallest div

	  h = d.getElementById(box[x]).offsetHeight;
	  for(y=0;y<box.length;y++){
		test_h = d.getElementById(box[y]).offsetHeight;
		if(h<test_h) h = test_h;

	  }
	}
	newhight = h + 10
	for(x=0;x<box.length;x++) d.getElementById(box[x]).style.height = newhight +"px"; //set the height of all divs to the tallest
}