// JavaScript Document

function touch(el,rep,rep1) {
	//var img = el.src;
	//alert('aaa '+el.childNodes[1].src);
	// alert('hmm '+rep);
	el.childNodes[0].childNodes[0].src = rep;
    
	el.childNodes[1].src = rep1;
}

function untouch (el,rep,rep1) {
   
   var urls = new Array("http://linkedtelecom.com.au/index.php?id=48","http://linkedtelecom.com.au/index.php?id=53","http://linkedtelecom.com.au/index.php?id=52","http://linkedtelecom.com.au/index.php?id=51","http://linkedtelecom.com.au/index.php?id=50");
   var images = new Array("home","solution","service","support","contact");
      var theurl = window.location.href;
   var found = false;
   
   for(var i=0;i<urls.length;i++){
	   
	   if(urls[i] == theurl) { //if the url match 
		   found = true;
		  
           //change pic on mouse out if the page not on 		   
		   if(el.childNodes[0].childNodes[0].name != images[i]) { // on mouse off dun cahnge pic if the page is on 			 
		      el.childNodes[0].childNodes[0].src = rep;
              el.childNodes[1].src = rep1;
		   }//if
		   break;	   
		   
	   }//if
   }//for
   
   if(!found){
      el.childNodes[0].childNodes[0].src = rep;
      el.childNodes[1].src = rep1;
   }
} 

function page() {
	var urls = new Array("http://linkedtelecom.com.au/index.php?id=48","http://linkedtelecom.com.au/index.php?id=53","http://linkedtelecom.com.au/index.php?id=52","http://linkedtelecom.com.au/index.php?id=51","http://linkedtelecom.com.au/index.php?id=50");
   var images = new Array("home","solution","service","support","contact");
   var img = "";
   var icon = "";
   var theurl = window.location.href;
   var found = false;
   
   for(var i=0;i<urls.length;i++){
	   
	   if(urls[i] == theurl) { //if the url match do the img change
		   found = true;
		   img = document.getElementsByName(images[i]); //the button
		   icon = document.getElementsByName(images[i]+"-icon"); // the icon
		   
		   img[0].src = "http://www.linkedtelecom.com.au/fileadmin/templates/images/" + images[i] + "-button-on.png";
		   icon[0].src = "http://www.linkedtelecom.com.au/fileadmin/templates/images/nav-on.png";	   
		   break;
	   }
   }//for
   
   if(theurl == "http://linkedtelecom.com.au"){ //default page tab
	   document.getElementsByName("home").src = "http://www.linkedtelecom.com.au/fileadmin/templates/images/home-button-on.png";
	   document.getElementsByName("home-icon").src = "http://www.linkedtelecom.com.au/fileadmin/templates/images/nav-on.png";
   }
}

