/** tabbing function
 *  author : Leonard Adhitya
 *
 *
 */
 
function tabbing () {
   var urls = new Array("http://www.prioritypartners.com.au/index.php?id=27","http://www.prioritypartners.com.au/index.php?id=6","http://www.prioritypartners.com.au/index.php?id=5","http://www.prioritypartners.com.au/index.php?id=4","http://www.prioritypartners.com.au/index.php?id=3");
   var images = new Array("watwedo","howwedo","whowework","events","contact");
   var img = "";
   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 tabbing img change
		   found = true;
		   img = document.getElementsByName(images[i]);
		   
		   img[0].src = "http://www.prioritypartners.com.au/fileadmin/templates/images/" + images[i] + "-on.gif";
		   
		   if(i != 0) {//to change the default tab
			   document.watwedo.src = "http://www.prioritypartners.com.au/fileadmin/templates/images/watwedo-off.gif";
		   }
		   
		   break;
	   }
   }
   
   if(!found){ //default page tab
	   document.watwedo.src = "http://www.prioritypartners.com.au/fileadmin/templates/images/watwedo-off.gif";
   }
      
}

function tabbing2 () {

   var urls = new Array("http://www.prioritypartners.com.au/index.php?id=17","http://www.prioritypartners.com.au/index.php?id=12","http://www.prioritypartners.com.au/index.php?id=11","http://www.prioritypartners.com.au/index.php?id=10","http://www.prioritypartners.com.au/index.php?id=9");
   var images = new Array("watwedo","howwedo","whowework","events","contact");
   var img = "";
   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 tabbing img change
	       
		   found = true;
		   img = document.getElementsByName(images[i]);
		   
		   img[0].src = "http://www.prioritypartners.com.au/fileadmin/templates/images/" + images[i] + "-on.gif";
		   
		   if(i != 0) {//to change the default tab
			   document.watwedo.src = "http://www.prioritypartners.com.au/fileadmin/templates/images/watwedo-off.gif";
		   }
		   
		   break;
	   }
   }
   
   if(!found){ //default page tab
	   document.watwedo.src = "http://www.prioritypartners.com.au/fileadmin/templates/images/watwedo-off.gif";
   }
      
}

