
	function movein( theNo, theColor, theCol )
	{
		identity=document.getElementById('main');
		identity.style.backgroundImage = "url(img/apartments/buildings/" + theNo + theCol + ".jpg)"
		
		identity=document.getElementById( theCol + 'lnk' + theNo );
		identity.style.color = theColor;
		
		identity=document.getElementById( theCol + 'txt' + theNo );
		identity.style.display = "inline";
		
		for (i=1; i<=10; i++)
		{
			identity = document.getElementById( theCol + 'line' + i);
			
			if (theNo > i )
			{
				identity.className = "lineBlank";
				
			}else if (theNo == i )
			{
				identity.className = "lineTop";
				
			}else if (theNo < i )
			{
				identity.className = "lineNormal";
			
			}
		}

		identity=document.getElementById( theCol + 'linebottom');
		identity.style.visibility = "visible";
	}

	function moveout( theCol )
	{
		var i=1
		var odd=true
		
		identity=document.getElementById('main');
		identity.style.backgroundImage = "url(img/apartments/buildings/1left.jpg)" 
				
		for (i=1;i<=10;i++)
		{
			identity=document.getElementById( theCol + 'line' + i);
			identity.className = "lineBlank";
			
			identity=document.getElementById( theCol + 'lnk' + i);
			
			if (odd)
			{
				identity.style.color = "#FFFFFF";
				odd = false
			}else{
				identity.style.color = "#CCCCCC";
				odd = true		
			}
			
			identity=document.getElementById( theCol + 'txt' + i);
			identity.style.display = "none";
		}
		
		identity=document.getElementById( theCol + 'linebottom');
		identity.style.visibility = "hidden";

	}