if (document.images) {
//Leftbar images  
  img01 = new Image();
  img01.src = "images/homepicon.jpg";
  img012 = new Image();
  img012.src = "images/homepicoff.jpg";
  
  img02 = new Image();
  img02.src = "images/aboutuspicon.jpg";
  img022 = new Image();
  img022.src = "images/aboutuspicoff.jpg";

  img03 = new Image();
  img03.src = "images/servicepicon.jpg";
  img032 = new Image();
  img032.src = "images/servicepicoff.jpg";

  img04 = new Image();
  img04.src = "images/contactuspicon.jpg";
  img042 = new Image();
  img042.src = "images/contactuspicoff.jpg";
}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}
