/*
Script to rotate images in the configurator
Eben Design www.ebendesign.com
*/

var configImgId = document.getElementById("imageSwitch");
var configDescId = document.getElementById("descSwitch");
var configImgs = new Array(
		"/images/config_w.jpg",
		"/images/config_w-ir.jpg",
		"/images/config_rfg.jpg",
		"/images/config_rfg_w.jpg",
		"/images/config_rfg-ir.jpg",
		"/images/config_rfg-ir-w.jpg",
		"/images/config_rfg-c.jpg",
		"/images/config_intro.jpg"
		)
var configDesc = new Array(
		"<strong>WS-MS-W</strong><br />The &ldquo;W&rdquo; ovens are completely wood-fired. In order to operate the oven properly, you need to build a fire inside which heats the stone and also provides the radiant heat necessary for a balanced cook.", 
		"<strong>WS-MS-W-IR (Formerly referred to as WS-MS-WG)</strong><br />Contrary to some people's first impression, the W-IR oven is really a wood oven in practice.  The W-IR does have a gas burner, but it is an under floor IR burner which operates merely as an assist during high-production.  The wood is the main heat source, the gas under floor burner guarantees that the desired floor temperature can be maintained even during the heaviest production rushes. This unit should be known as the world's most powerful wood-fired oven (emphasis on Wood-Fired).", 
		"<strong>WS-MS-RFG</strong><br />The Radiant Flame Gas (RFG) oven is one of our two strictly gas-fired oven models.  Its lone heat source is the radiant flame visible in the back of the oven.  That radiant burner heats the stone which, in turn, cooks the food.  The RFG is great for small to medium production situations.  It should be noted that almost all gas-fired stone-hearth ovens on the market are of this configuration, the single temperature oven.  With the exception of the Wood Stone Dual-Temperature   RFG-IR line, this is the best gas-fired oven in the world.", 
		"<strong>WS-MS-RFG-W</strong><br />The RFG-IR oven can be configured to also burn wood.  This configuration gives you the full functionality of the RFG-IR oven with the option to burn wood for show. This type of configuration, rather than the  W-IR is what most customers are really looking for when they order a combination oven.  For a medium production scenario, lower cost alternative, please also consider the RFG-W.", 
		"<strong>WS-MS-RFG-IR (Formerly referred to as WS-MS-GG)</strong><br />The Wood Stone RFG-IR oven is the most powerful stone-hearth oven manufactured in the world.  This dual-temperature gas configuration combines a radiant flame gas burner with a under floor infra-red gas burner to provide tremendous floor temperature management capabilities.  The trademark under floor burner guarantees that the desired floor temperature can be maintained even during the heaviest production rushes.<br /><br /><strong>Optional Configurations for Wood Burning:</strong><br /><br /><strong>WS-MS-RFG-IR-W (Formerly referred to as WS-MS-RFG-IR-W)</strong><br />The RFG-IR oven can be configured to also burn wood.  This configuration gives you the full functionality of the RFG-IR oven with the option to burn wood for show. This type of configuration, rather than the  W-IR is what most customers are really looking for when they order a combination oven.  For a medium production scenario, lower cost alternative, please also consider the RFG-W.", 
		"<strong>WS-MS-RFG-IR-W (Formerly referred to as WS-MS-GG-W)</strong><br />The RFG-IR oven can be configured to also burn wood.  This configuration gives you the full functionality of the RFG-IR oven with the option to burn wood for show. This type of configuration, rather than the  W-IR is what most customers are really looking for when they order a combination oven.  For a medium production scenario, lower cost alternative, please also consider the RFG-W.", 
		"<strong>WS-MS-RFG-C</strong><br />The Radiant Flame Gas (RFG) oven is one of our two strictly gas-fired oven models.  Its lone heat source is the radiant flame visible in the back of the oven.  That radiant burner heats the stone which, in turn, cooks the food.  The RFG-C is configured to allow the installation of a second Infrared Burner to be installed at a later date. Infrared Burners cannot be included at a later time if the oven isn't ordered to be Convertible."
		)

function mtadams(a)
{
	configImgId.src = configImgs[a];
	configDescId.innerHTML = configDesc[a];
}
