// JavaScript Document

window.onload = function() {
	
  var switch1 = document.getElementById('switch1');
  var switch2 = document.getElementById('switch2');
  var switch1on = document.getElementById('switch1on');
  var switch2on = document.getElementById('switch2on');
  
  switch1.onmouseover = function() {
    switch1on.style.visibility = 'visible';
  }
  switch1on.onmouseover = function() {
    this.style.visibility = 'visible';
	switch1.style.visibility = 'hidden';
  }
  switch1on.onmouseout = function() {
    this.style.visibility = 'hidden';
	switch1.style.visibility = 'visible';
  }
  
  
  switch2.onmouseover = function() {
    switch2on.style.visibility = 'visible';
  }
  switch2on.onmouseover = function() {
    this.style.visibility = 'visible';
	switch2.style.visibility = 'hidden';
  }
  switch2on.onmouseout = function() {
    this.style.visibility = 'hidden';
	switch2.style.visibility = 'visible';
  }
  
}


