// Preload your images.

// Preload Restoration Button
Restoration1 = new Image(109,27)
Restoration1.src  = "images/restoration_norm.gif"
Restoration2 = new Image(109,27)
Restoration2.src  = "images/restoration_hl.gif"

// Preload Conversion Button
Conversion1 = new Image(109,27)
Conversion1.src  = "images/conversion_norm.gif"
Conversion2 = new Image(109,27)
Conversion2.src  = "images/conversion_hl.gif"

// Preload Custom Button
Custom1 = new Image(155,27)
Custom1.src  = "images/custom_norm.gif"
Custom2 = new Image(155,27)
Custom2.src  = "images/custom_hl.gif"

// Preload UL Certification Button
ULCert1 = new Image(189,27)
ULCert1.src  = "images/ul_cert_norm.gif"
ULCert2 = new Image(189,27)
ULCert2.src  = "images/ul_cert_hl.gif"

// Preload Location Button
Location1 = new Image(125,27)
Location1.src  = "images/location_norm.gif"
Location2 = new Image(125,27)
Location2.src  = "images/location_hl.gif"

// Switch image function

function switchimage(imgDocID,imgObjName) 
{
	document[imgDocID].src = eval(imgObjName + ".src");
}

//End comment tag. Copy this line exactly.-->

