count = 0;
function changeImage()
{
  count++;
  count %= 4;
  document.president.src = "images/president0" + count + ".jpg";
}
function changeImage2()
{
  count++;
  count %= 7;
  document.working.src = "images/working0" + count + ".jpg";
}


function quicklink(w){
if(w == "") return;
document.quick.url.selectedIndex = 0;
location.href = w;
}

