// preload rollover images
var myimages = new Array();
function preloading()
{
	var x;
	for (x=0; x<preloading.arguments.length; x++)
	{
		myimages[x] = new Image();
		myimages[x].src = '/img/'+preloading.arguments[x];
	}
}
preloading("button-get-a-quote-on.gif",
		   "button-rental-equipment-on.gif",
		   "button-customer-survery-on.gif"
		   );

// Clear textfield
function ctf(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = "";
		theText.style.color = "#000000";
		theText.style.fontWeight = 'bold';
	}
}
// Reset textfield
function rtf(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
		theText.style.color = "#a7a7a7";
		theText.style.fontWeight = 'normal';
	}
}
// Prevent default searches
function l2s(theForm) {
	if (theForm.q.value == theForm.q.defaultValue) {
		theForm.q.focus();
		return false;
	}
	return true;
}

// image rollover
function ovr(theImg) {
	theImg.src = theImg.src.replace('.gif','-on.gif');
}

// image rollout
function out(theImg) {
	theImg.src = theImg.src.replace('-on.gif','.gif');
}

// shady games!
function dropUsedEquipmentDisclaimer() 
{
	document.write('<div class="copy disclaimer">');
	document.write('<p>* While Able makes every effort to provide accurate and complete information, various data such as hours and appearance of equipment depicted may change prior to updating. Pictures shown may not be accurate representation of specific equipment. Purchaser must contact Able for updated information and picture of equipment before purchasing. Able is not liable for mistakes or changes in posted information or pictures.</p>');
	document.write('<p>* ABLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE MERCHANTABILITY OF THE EQUIPMENT OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. THERE IS NO WARRANTY THAT THE PRODUCT IS SUITED FOR PURCHASER\'S INTENDED USE, OR THAT IT IS FREE FROM DEFECT. ABLE DISCLAIMS ALL OTHER WARRANTIES, EITHER EXPRESS OR IMPLIED, MADE IN CONNECTION WITH THE PURCHASE OF THE EQUIPMENT. PURCHASER ACKNOWLEDGES ACCEPTANCE OF THE EQUIPMENT ON AN "AS IS" BASIS WITH "ALL FAULTS" AND WITHOUT ANY RECOURSE WHATSOEVER AGAINST ABLE.</p>');
	document.write('<p>* Your use of the equipment is at your sole risk.</p>');
	document.write('<p>* No advice or information, whether oral or written, obtained by you from ABLE shall create any warranty not expressly stated herein.</p>');
	document.write('<p>* ABLE shall not be liable for any direct, indirect, incidental, special, consequential or exemplary damages, including but not limited to, damages for personal injury, loss of profits or other intangible losses in connection with or resulting from the use or the inability to use the equipment.</p>');
	document.write('</div>');
}