$(document).ready(
    function(){
	var head = document.getElementsByTagName('head')[0];
	var s = document.createElement('link');
	s.href = "/css/content.css";
	s.type = "text/css";
	s.rel = "stylesheet";
	head.appendChild(s);
    });

function openPanel(c, title){
  w = window.open(c, title, 'width=480,height=400,scrollbars=yes,status=yes');
  w.focus();
}

function auto_change(parts){
  location.replace(parts.options[parts.selectedIndex].value);
}

