﻿// JScript File

function newImage( imgSrc ){

 var imgName = new Image();
 imgName.src = imgSrc;

 return imgName;

}

function change( imgName, imgLocation )
{
 document[imgName].src = imgLocation;

}

function setTabs(index)
{
    mypets.currentTabIndex = index;
}

var preloadFlag = false;
function loadImages()
{
 if (document.images)
 {
 //****Edit this list to include rollover state images ****
	about_ov = newImage("images/about_ov.gif");
	services_ov = newImage("images/services_ov.gif");
	faq_ov = newImage("images/faq_ov.gif");
	news_ov = newImage("images/news_ov.gif");
	PnM_ov = newImage("images/PnM_ov.gif");    
	testimonials_ov = newImage("images/testimonials_ov.gif");    
	contact_ov = newImage("images/contact_ov.gif");      
	preloadFlag = true;
 }
}