// JavaScript Document
function hideDiv() {
document.getElementById("ajaxdiv").setAttribute("class", "hideAjaxDiv");
document.getElementById("ajaxdiv").setAttribute("className", "hideAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("class", "hideAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("className", "hideAjaxDiv");
}

function showDiv() {
document.getElementById("ajaxdiv").setAttribute("class", "showAjaxDiv");
document.getElementById("ajaxdiv").setAttribute("className", "showAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("class", "hideAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("className", "hideAjaxDiv");
}

function showDiv2() {
document.getElementById("ajaxdiv").setAttribute("class", "hideAjaxDiv");
document.getElementById("ajaxdiv").setAttribute("className", "hideAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("class", "showAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("className", "showAjaxDiv");
}

function hideDivTo() {
document.getElementById("ajaxdiv2").setAttribute("class", "hideAjaxDiv");
document.getElementById("ajaxdiv2").setAttribute("className", "hideAjaxDiv");
}

function hideDivFrom() {
document.getElementById("ajaxdiv").setAttribute("class", "hideAjaxDiv");
document.getElementById("ajaxdiv").setAttribute("className", "hideAjaxDiv");
}

<!--
  if (document.images)
   {
     image_off= new Image(144,74);
     image_off.src="/images/home/todo_days2.jpg";
	 image1= new Image(144,74);
     image1.src="/images/home/todo_days2.jpg";
     image2= new Image(144,74);
     image2.src="/images/home/todo_shopping.jpg";
     image3= new Image(144,74);
     image3.src="/images/home/todo_tours.jpg";  
     image4= new Image(144,74);
     image4.src="/images/home/todo_eating.jpg";   

   }

function change1(picName,imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document[picName].src= imgOn;
    }
 }
//-->