function barover (showMe) 
	{

	//get an array  of LI in the ID iconbar
	var liList = document.getElementById('iconbar').getElementsByTagName('li');
	
	
	//change width
	var links = document.getElementById(showMe).style.width="150px";
	if (showMe == liList[0].id) 
		{
			var links = document.getElementById(showMe).style.width="138px";
		} else
	if (showMe == "ibar7") 
		{
			var links = document.getElementById(showMe).style.width="170px";
		}

	//change other graphics to 50%
	var icons = liList.length;
	
	var i = 0;
	while (i <= icons-1)
		{
		if (liList[i].id != showMe)
				{
				currentImg =  liList[i].style.backgroundImage;
				replaceImg =  currentImg.substr(0,currentImg.length-4-1) + "s.gif)";
				//alert(currentImg +"\n" + replaceImg);
				
				liList[i].style.backgroundImage = replaceImg;
				liList[i].style.width = "53px";
				liList[i].style.backgroundPosition = "0px 14px";
				}
		i++;
		}
	
	
	
	
	}
	
function barout (showMe) 
	{

	var liList = document.getElementById('iconbar').getElementsByTagName('li');
	
	
	//change width to default
	if (showMe == liList[0])
		{
			var links = document.getElementById(showMe).style.width="53px";
		} else
		{
			var links = document.getElementById(showMe).style.width="65px";
		}

//change other graphics to 100%
	var icons = liList.length;
	
	var i = 0;
	while (i <= icons-1)
		{

			if (liList[i].id != showMe) 
				{ 
					
				currentImg =  liList[i].style.backgroundImage;
				replaceImg =  currentImg.substr(0,currentImg.length-5-1) + ".gif)";
				//alert(currentImg +"\n" + replaceImg);
				
				liList[i].style.backgroundImage = replaceImg;
				liList[i].style.backgroundPosition = "left top";
				if (i == 0) { liList[i].style.backgroundPosition = "-12px top"; }


				}
		    liList[i].style.width= "65px";
			
			if (i == 0) { liList[i].style.width = "53px"; }

			i++;
		}
		
	}
	
	
function getURL(link) 
	{

	if(link)
		{
	 	window.location=link;
		}
	}
 