function colorMyStrings(arguments) {
    var test=false;
	backColorOfElement=originalColor;
	 
	 for (var i=0; i<arguments.length; i++) {
		str = "";
        code = arguments[i];
		code = code.replace(/ /g,"-");
		str += code;
		
		
		// alert(str);
		if (i==0) {
			pos = str.indexOf("color:");
			if (pos!=-1) {
				test = true;
				backColorOfElement = str.substr(6,str.length);
			}
		}
		
		if (test==true) {
			
			if (i!=0) {
				myElement = document.getElementById(str);
				if (myElement) {
					myElement.style.zIndex=1000+i;
					myElement.style.backgroundColor=backColorOfElement;
					myElement.className="serviceMouseOver";
				}
			}
		}
		else {
			myElement = document.getElementById(str);
			if (myElement) {
				myElement.style.zIndex=1000+i;
				myElement.style.backgroundColor=backColorOfElement;
				myElement.className="serviceMouseOver";
			}
		}
      }
      return str;
	}
	
	function colorNotMyStrings(arguments) {
     for (var i=0; i<arguments.length; i++) {
		str = "";
		code = arguments[i];
		code = code.replace(/ /g,"-");
		str += code;
			
		if (i!=0) {
			myElement = document.getElementById(str)
			if (myElement) {
				if (myElement.style.zIndex) myElement.style.zIndex=10+i;
				myElement.style.backgroundColor='';
				myElement.className="simple";
			}
		}
		else {
			pos = str.indexOf("color:");
			if (pos==-1) {
				myElement = document.getElementById(str)
				if (myElement) {
					if (myElement.style.zIndex) myElement.style.zIndex=10+i;
					myElement.style.backgroundColor='';
					myElement.className="simple";
				}
			}
		}
      }
      // alert (str);
      return str;
	}
	
		/* 
		var words = new Array(10);
		var code = new Array(10);
		var words = ['test 1', 'test 2', 'test 3'];
		var code = ['test 1', 'test 2', 'test 3'];
		
		for (i=0; i<=words.length; i++) {
			code[i] = words[i];
			code[i] = code[i].replace(/J/g, "-");
		}
		
		document.writeln('0>'+myArray[0]+code[0]+'<BR>'); 
		document.writeln('1>'+myArray[1]+code[1]+'<BR>'); 
		document.writeln('2>'+myArray[2]+code[2]+'<BR>'); 
		*/