// Image Rollover Script

if (document.images) 
	{
  button1 = new Image()
	button1.src = "images/nav_top.gif"
	button1over = new Image()
	button1over.src = "images/nav_home_on.gif"

  button2 = new Image()
	button2.src = "images/nav_top.gif"
	button2over = new Image()
	button2over.src = "images/nav_download_on.gif"

  button3 = new Image()
	button3.src = "images/nav_top.gif"
	button3over = new Image()
	button3over.src = "images/nav_demo_on.gif"

  button4 = new Image()
	button4.src = "images/nav_top.gif"
	button4over = new Image()
	button4over.src = "images/nav_product_on.gif"

	button5 = new Image()
	button5.src = "images/nav_top.gif"
	button5over = new Image()
	button5over.src = "images/nav_pricing_on.gif"

	button6 = new Image()
	button6.src = "images/nav_top.gif"
	button6over = new Image()
	button6over.src = "images/nav_purchase_on.gif"

	button20 = new Image()
	button20.src = "images/btn_about.gif"
	button20over = new Image()
	button20over.src = "images/btn_about_on.gif"

	button21 = new Image()
	button21.src = "images/btn_news.gif"
	button21over = new Image()
	button21over.src = "images/btn_news_on.gif"

	button22 = new Image()
	button22.src = "images/btn_other.gif"
	button22over = new Image()
	button22over.src = "images/btn_other_on.gif"


	button24 = new Image()
	button24.src = "images/btn_whitepaper.gif"
	button24over = new Image()
	button24over.src = "images/btn_whitepaper_on.gif"

	button25 = new Image()
	button25.src = "images/btn_support.gif"
	button25over = new Image()
	button25over.src = "images/btn_support_on.gif"

	button26 = new Image()
	button26.src = "images/btn_contact.gif"
	button26over = new Image()
	button26over.src = "images/btn_contact_on.gif"

	button27 = new Image()
	button27.src = "images/btn_other.gif"
	button27over = new Image()
	button27over.src = "images/btn_other_on.gif"

	button30 = new Image()
	button30.src = "images/home_try_it.gif"
	button30over = new Image()
	button30over.src = "images/home_try_it_on.gif"

	button31 = new Image()
	button31.src = "images/home_see_it.gif"
	button31over = new Image()
	button31over.src = "images/home_see_it_on.gif"

	button32 = new Image()
	button32.src = "images/home_get_it.gif"
	button32over = new Image()
	button32over.src = "images/home_get_it_on.gif"


	}
function switchimage(string,i) 
	{
	if (document.images) eval("document.button" + i + ".src = " + string) 
	}
// -->

