<!-- Hide script from browsers that don't support JavaScript
// this is for the mouseovers


	// if the browser supports caching images...
    if (document.images) 
 {
	// assign the new image command to variables
	aboutOn = new Image
	contactOn = new Image
	productsOn = new Image
	orderOn = new Image
	tabsOff = new Image
	
	// tell it where the images are
	aboutOn.src = 'images/tabAbout.gif'
	contactOn.src = 'images/tabContact.gif'
	productsOn.src = 'images/tabProducts.gif'
	orderOn.src = 'images/tabOrder.gif'
	tabsOff.src = 'images/tab1navTag.gif'	 

}
// of the browser doesn't support caching images,
// just set the variable names to empty strings (no command)

else {
	aboutOn = ''
	contactOn = ''
	productsOn = ''
	orderOn = ''
	tabsOff = ''
}

// end hiding -->
