var soundMovie;

function getFlashMovieObject(movieName)
{
  if (window.document[movieName]) 
  {
	  return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
	if (document.embeds && document.embeds[movieName])
	  return document.embeds[movieName]; 
  }
  else
  {
	return document.getElementById(movieName);
  }
};

function playSound()
{
	soundMovie=getFlashMovieObject("flashMovie");
	soundMovie.SetVariable("switcher","true");
};

$("menu1").onmouseover=$("menu3").onmouseover=$("menu4").onmouseover=$("menu5").onmouseover=function()
{
	this.style.backgroundPosition="-203px"
		playSound();
};

$("menu1").onmouseout=$("menu3").onmouseout=$("menu4").onmouseout=$("menu5").onmouseout=function()
{
	this.style.backgroundPosition="0px"
};



