  var colorSwitcher=new Object();
	
  colorSwitcher.imagesArray=new Array();
	colorSwitcher.selected=null;
  
  colorSwitcher.y3=function(a) {
	 for(i=0;i<a.length;i++) {
	   colorSwitcher.imagesArray[i]=a[i]
   }
  };
  
  colorSwitcher.x1=function(e,a,d,b,c) {
    if(colorSwitcher.selected!=null) {
	   colorSwitcher.selected.className=""
    }
	  colorSwitcher.selected=e;
	  colorSwitcher.selected.className="selected";
	  document.getElementById(a).src=d;
	  document.getElementById(b).href=c;
  }	;
  

