var HomeSplash =
{
	titles: new Array
	(
			"<span style='color: #00BCFF;'>SolidView/Pro</span>",
			"<span style='color: #138d9a;'>SolidView</span>",
			"<span style='color: #df0884;'>SolidView/Pro RP</span>"
	),
	slogans: new Array
	(
		"Everything you need",
		"View, Rotate & Measure ",
		"Professional RP Tools"
	),
	prices: new Array
	(
		"$495",
		"$99",
		"$1,495"
	),
	contents: new Array
	(
	    "<ul><li>Interfaces available for popular CAD formats</li><li>Translate, scale, rotate, mirror, and combine</li><li>Network licenses available</li></ul>",
		"<ul><li>Entry level 3D Viewer</li><li>View, Print, and Measure STL, SVD and SolidWorks formats</li></ul><br /><br /><br />",
		"<ul><li>Popular CAD formats available through add on interfaces</li><li>Translate, scale, rotate, mirror, copy combine, shell, repair, cut (cross-section) and lots more</li><li>Network licenses available</li></ul>"
	),
	links: new Array
	(
		"<a class='btn-splash-svp' href='#'></a>",
		"<a class='btn-splash-sv' href='#'></a>",
		"<a class='btn-splash-svprp' href='#'></a>"
	),
	title: document.getElementById ("splash_title"),
	slog: document.getElementById ("splash_slogan"),
	price: document.getElementById ("splash_price"),
	cont: document.getElementById ("splash_content"),
	link: document.getElementById ("splash_action")
};

function changeProduct (n)
{
    HomeSplash.title.innerHTML = HomeSplash.titles[n - 1];
    HomeSplash.slog.innerHTML = HomeSplash.slogans[n - 1];
    HomeSplash.price.innerHTML = HomeSplash.prices[n - 1];
    HomeSplash.cont.innerHTML = HomeSplash.contents[n - 1];
    HomeSplash.link.innerHTML = HomeSplash.links[n - 1];
}