// Use JavaScript to communicate with Flash ActionScript
// to display images dynamically after mousing over a
// standard HTML element in the CSS menu.
<!--
	function thisMovie(movieName)
	{
//		alert('boo');
		var isIE = navigator.appName.indexOf("Microsoft") != -1;
		return (isIE) ? window[movieName] : document[movieName];
	}

	function getImage(imageName)
	{
		var transitionColor = "0x000000";
		var imageFolder = "gold/images/home/";
		imagePath = imageFolder + imageName + ".jpg";
 		thisMovie("duralastHome").asFunc(imagePath,imageName,transitionColor);
	}

// this was going to be used for the product pages (the big image with the bullets).
	function getProductFeatureImage(imageName)
	{
		var imageName = pageRequest + ".jpg";
		var imagePath = "gold/images/features/";
		var xmlPath = "gold/content/images.xml";
		var circleRadius = 9;
		var drawColor = "0xF8D108";
		thisMovie("productFeatures").asFunc(imageName,imagePath,xmlPath,circleRadius,drawColor);
	}

// -->