﻿// JScript File
//mouse roll over in the treeview navigation
	
						function changeColor(cObj){
						//alert("this is alert");
						cObj.style.color = 'red';
						}

						function revertColor(cObj){
						cObj.style.color = 'orange';
						}

						function revertImage(id){
						document.getElementById(id).src = 'images/TreeViewIcon.jpg';
						}

                        function revertImage2(id){
						document.getElementById(id).src = '/adx/imgs/spacer.gif';
						}
						
						function changeImage(id){
					    document.getElementById(id).style.display = '';
						document.getElementById(id).src = 'images/TreeViewCurrentIcon.jpg';
						//alert(document.getElementById(id).height);
						//alert(document.getElementById(id).width);
						}

					    function changeImage2(id){
					    document.getElementById(id).style.display = '';
						document.getElementById(id).src = 'images/TreeViewCurrentIcon.jpg';
						//alert(document.getElementById(id).height);
						//alert(document.getElementById(id).width);
						}


