// simple rollover script
if (document.images) {

//preload images 
 home = new Image();
 home.src = "img/home.gif";
 home2 = new Image();
 home2.src = "img/home2.gif";
 ourhistory = new Image();
 ourhistory.src = "img/history.gif";
 ourhistory2 = new Image();
 ourhistory2.src = "img/history2.gif";
 aboutus = new Image();
 aboutus.src = "img/aboutus.gif";
 aboutus2 = new Image();
 aboutus2.src = "img/aboutus2.gif"; 
 business = new Image();
 business.src = "img/business.gif";
 business2 = new Image();
 business2.src = "img/business2.gif";
 offered = new Image();
 offered.src = "img/offered.gif";
 offered2 = new Image();
 offered2.src = "img/offered2.gif"; 
 testimonials = new Image();
 testimonials.src = "img/testimonials.gif";
 testimonials2 = new Image();
 testimonials2.src = "img/testimonials2.gif";
 what = new Image();
 what.src = "img/what.gif";
 what2 = new Image();
 what2.src = "img/what2.gif";
 promo = new Image();
 promo.src = "img/promo.gif";
 promo2 = new Image();
 promo2.src = "img/promo2.gif";
 contact = new Image();
 contact.src = "img/contact.gif";
 contact2 = new Image();
 contact2.src = "img/contact2.gif";
 
 
//rollover
}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}

//rollout
function OffImage(name) {
 if (document.images) {
  fullname = eval(name);
	if (fullname.complete) {
   document[name].src = fullname.src;
	}
 }
}

