<!--

/////////////////////////////////////////////////////////////////
// this javascript source code can moving html object over screen   
// compatible with IE, Mozila & Netscape Navigator Browsers
///////////////////////////////////////////////////////////

maxAnimations = 20 // this is maximum of all moved panels

screenWidth = 0; //  width of browser screen, in pixel
screenHeight = 0; //  height of browser screen, in pixel

startXpos=new Array(maxAnimations);  //start x coordinates, in pixel
startYpos=new Array(maxAnimations);  //start y coordinates, in pixel

endXpos=new Array(maxAnimations);  //end x coordinates, in pixel
endYpos=new Array(maxAnimations);  //end y coordinates, in pixel

stepLength=19; //Animation speed (smaller is slower)

// private variables
stepByX=new Array(maxAnimations); 
stepByY=new Array(maxAnimations); 
currX=new Array(maxAnimations);
currY=new Array(maxAnimations);
timerID=new Array(maxAnimations);
isVisible=new Array(maxAnimations);

var ns6=document.getElementById&&!document.all // get type of browser

function CreatePanel(index, objectContent, objectHidden)
{
    if (document.layers)
    {
        document.write("<LAYER NAME=n"+index+" LEFT=0 TOP=-1000><DIV NAME='marker"+index+"' border=0>"+objectContent+"</DIV></LAYER>");
        
        document.write("<LAYER NAME=nh"+index+" LEFT=0 TOP=-1000><DIV NAME='markerh"+index+"' border=0>"+objectHidden+"</DIV></LAYER>");
    }
    else 
    if (document.all||ns6)
    {
        if (document.all)
        {
            document.write('<div id="out" style="position:absolute;top:0;left:0"><div id="in" style="position:relative">');
            document.write('<div id="marker" style="position:absolute;top:-1000;left:0" border=0>'+objectContent+'</div>');
            document.write('</div></div>');
        }
        else
        {
            document.write('<div id="out'+index+'" style="position:absolute;top:0;left:0"><div id="in'+index+'" style="position:relative">');
            document.write('<div id="marker'+index+'" style="position:absolute;top:-1000;left:0" border=0>'+objectContent+'</div>');
            document.write('</div></div>');
        }    
        
        if (document.all)
        {
            document.write('<div id="outh" style="position:absolute;top:0;left:0"><div id="inh" style="position:relative">');
            document.write('<div id="markerh" style="position:absolute;top:-1000;left:0" border=0>'+objectHidden+'</div>');
            document.write('</div></div>');
        }    
        else    
        {
            document.write('<div id="outh'+index+'" style="position:absolute;top:0;left:0"><div id="inh'+index+'" style="position:relative">');
            document.write('<div id="markerh'+index+'" style="position:absolute;top:-1000;left:0" border=0>'+objectHidden+'</div>');
            document.write('</div></div>');
        }    
    }
    
    startXpos[index] = -1;
    startYpos[index] = -1;
    endXpos[index] = 1;
    endYpos[index] = 1;
    
    stepByX[index] = 0;
    stepByY[index] = 0;
    
    currX[index] = 0;
    currY[index] = -1000;
    isVisible[index] = false;
}

function GetBrowserScreenSize()
{
    if (document.layers||ns6){
        screenWidth=window.innerWidth;
        screenHeight=window.innerHeight;
    }
    if (document.all){
        screenWidth = window.document.body.offsetWidth;
        screenHeight = window.document.body.offsetHeight;
    }
}    

function MoveMarker(index)
{
    if (document.layers){
      document.layers["marker"+index].left = currX[index];
      document.layers["marker"+index].top = currY[index];
    }
    if (document.all){
      document.all.marker[index].style.pixelLeft = currX[index];
      document.all.marker[index].style.pixelTop = currY[index];
    }
    if (ns6){
      document.getElementById("marker"+index).style.left = currX[index];
      document.getElementById("marker"+index).style.top = currY[index];
    }
}

function MoveMarkerH(index)
{
    if (document.layers){
      document.layers["markerh"+index].left = currX[index];
      document.layers["markerh"+index].top = currY[index];
    }
    if (document.all){
      document.all.markerh[index].style.pixelLeft = currX[index];
      document.all.markerh[index].style.pixelTop = currY[index];
    }
    if (ns6){
      document.getElementById("markerh"+index).style.left = currX[index];
      document.getElementById("markerh"+index).style.top = currY[index];
    }
}

function Animate(index){

    currX[index] += stepByX[index];
    currY[index] += stepByY[index];
  
    if (((stepByX[index] > 0) && (currX[index] >= endXpos[index])) ||
        ((stepByY[index] > 0) && (currY[index] >= endYpos[index])) ||
        ((stepByX[index] < 0) && (currX[index] <= endXpos[index])) ||
        ((stepByY[index] < 0) && (currY[index] <= endYpos[index]))) {
        MoveToEndPosition(index);
        clearInterval(timerID[index]);
        timerID[index] = 0;
    }
    else {
        MoveMarker(index);
    }
}

function MoveToStartPosition(index)
{
    currX[index] = startXpos[index];
    currY[index] = startYpos[index];	
    
    MoveMarker(index);
    MoveMarkerH(index);
}

function IsOnEndPosition(index)
{
	return ((currX[index] == endXpos[index]) &&
            (currY[index] == endYpos[index]) &&
            (currX[index] != 0) &&
            (currY[index] != -1000) &&
            (isVisible[index]));
}

function MoveToEndPosition(index)
{
    currX[index] = 0;
    currY[index] = -1000;
    
	HideMarkerH(index);
    MoveMarkerH(index);
    
    currX[index] = endXpos[index];
    currY[index] = endYpos[index];

    MoveMarker(index);
}

function MoveToOutScreen(index)
{
    currX[index] = 0;
    currY[index] = -1000;	
    
    MoveMarker(index);
    MoveMarkerH(index);
}

function ShowMarker(index){
    if (document.layers)
	{
        document.layers["marker"+index].visibility="show";
	}
    else 
    if (document.all)
	{
        document.all.out[index].style.visibility="visible";
	}	
    else 
    if (ns6)
	{
        document.getElementById("out"+index).style.visibility="visible";
	}	

    isVisible[index] = true;
}

function ShowMarkerH(index){
    if (document.layers)
	{
        document.layers["markerh"+index].visibility="show";
	}
    else 
    if (document.all)
	{
        document.all.outh[index].style.visibility="visible";
	}	
    else 
    if (ns6)
	{
        document.getElementById("outh"+index).style.visibility="visible";
	}	
}

function HideMarker(index){
    if (document.layers)
	{
        document.layers["marker"+index].visibility="hide";
	}	
    else 
    if (document.all)
	{
        document.all.out[index].style.visibility="hidden";
	}	
    else 
    if (ns6)
	{
        document.getElementById("out"+index).style.visibility="hidden";
	}
	
    isVisible[index] = false;
    
    HideMarkerH(index);
}

function HideMarkerH(index)
{
    if (document.layers)
	{
        document.layers["markerh"+index].visibility="hide";
	}	
    else 
    if (document.all)
	{
        document.all.outh[index].style.visibility="hidden";
	}	
    else 
    if (ns6)
	{
        document.getElementById("outh"+index).style.visibility="hidden";
	}
}


function SetPath(index, startX, startY, endX, endY)
{
    startXpos[index] = startX;
    startYpos[index] = startY;
    endXpos[index] = endX;
    endYpos[index] = endY;
    
    pathByX = endX - startX;
    pathByY = endY - startY;
    
    pathLength = Math.sqrt(Math.pow(pathByX,2) + Math.pow(pathByY,2));
    allSteps = pathLength / stepLength;
    
    stepByX[index] = pathByX / allSteps;
    stepByY[index] = pathByY / allSteps;
    
    currX[index] = startX;
    currY[index] = startY;
}

function StartAnimate(index)
{
    MoveToStartPosition(index);
    ShowMarker(index);
    ShowMarkerH(index);
    timerID[index] = setInterval("Animate("+index+")",30)
    timerID[index] = 0;
}

function CancelAnimate(index)
{
    if (timerID[index] != 0){
        clearInterval(timerID[index]);
        timerID[index] = 0;
    }
    
    HideMarker(index);
    HideMarkerH(index);
    
    MoveToOutScreen(index);
}

// main program
//////////////////////////////
function CreatePanels()
{
	CreatePanel(0,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#B2D3DD" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_bluebox.gif" width="81" height="61" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(0);">close</a> <img src="images/close_btt.gif"  align="texttop"  border="0" onclick="HidePanel(0);"/></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">HARD SURFACE MAINTENANCE<br /><span class="txt16ar">From stone to resilient surfaces, CFS can provide all types of hard surface maintenance and restoration. We employ state-of-the-art processes to ensure that whatever the surface, we&#8217;ve got you covered.</span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);

	CreatePanel(1,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#B2D3DD" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_bluebox.gif" width="81" height="61" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(1);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(1);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">GROUT RESTORATION<br /><span class="txt16ar">Your grout will be virtually immune to staining, microbial infestation, and color change with our industry-leading grout restoration process from Grout Armor.</span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);
	
	CreatePanel(2,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#B2D3DD" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_bluebox.gif" width="81" height="61" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(2);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(2);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">DISASTER RECOVERY<br /><span class="txt16ar">When disaster strikes, let CFS help. Our disaster recovery service neutralizes your carpet and upholstery to offset negative pH levels caused by water damage. CFS can then restore them to their original integrity so you can be back on your feet in no time.</span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);
	
	CreatePanel(3,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#B2D3DD" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="85" align="center"><img src="images/logo_bluebox.gif" width="81" height="61" /></td>'+
				'<td height="85" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(3);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(3);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">FLOORING CONSULTING SERVICES<br /><span class="txt16ar">We take the hassle out of floor maintenance by handling everything for you &#151; from the design to the schedule and implementation of your custom maintenance plan.</span></blockquote>'+
				'<blockquote class="txt12arWhite">CAPITAL ANALYSIS AND PLANNING<br /><span class="txt16ar">We can also help you more effectively plan your capital budget for replacement. First, we do a floor-by-floor analysis of your flooring by manufacturer, pattern, color number, age, and condition. Then we use our expertise to create a capital replacement planning tool that makes it easy and efficient for you to plan budgets and schedules for replacement.</span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:400px"></div>'
		);

	CreatePanel(4,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#A3BD0B" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_greenbox.gif" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(4);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(4);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">CARPET CLEANING<br /><span class="txt16ar">Your carpet will be clean, dry and odor free with MilliCare&#8217;s proprietary Dry Carpet Cleaner.<br /><br />A powder is applied and brushed deep into the moistened carpet fiber where it attracts and absorbs soil.<br /><br />The cleaner along with any soil and pollutants is then vacuumed out.<br /><br /></span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);

	CreatePanel(5,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#A3BD0B" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_greenbox.gif" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(5);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(5);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">TEXTILE CLEANING<br /><span class="txt16ar">Your textiles will look and feel new again with MilliCare&#8217;s high-energy solution application that power cleans each fiber.<br /><br />The instantaneous recovery system makes it virtually impossible to soak fabrics, resulting in significantly shorter dry times.</span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);
	
	CreatePanel(6,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#A3BD0B" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_greenbox.gif" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(6);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(6);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">ODOR REMEDIATION<br /><span class="txt16ar">Eliminate odors from your carpet and textiles with our safe, non-toxic Odor Neutralizer.<br /><br />It speeds up the destruction of odor sources by oxidizing them to non-volatile components.<br /><br /></span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);
	
	CreatePanel(7,
		'<table width="388" height="365" border="0" cellspacing="0" cellpadding="0" bgcolor="#A3BD0B" style="filter:alpha(opacity=90);-moz-opacity:0.9;">'+
			'<tr>'+
				'<td width="155" height="95" align="center"><img src="images/logo_greenbox.gif" /></td>'+
				'<td height="95" align="right" valign="top" class="close"><a href="#"  onclick="HidePanel(7);">close</a> <img src="images/close_btt.gif" align="texttop"  border="0" onclick="HidePanel(7);" /></td>'+
			'</tr>'+
			'<tr>'+
				'<td height="233" colspan="2" valign="top"><blockquote class="txt12arWhite">FIBER PROTECTION<br /><span class="txt16ar">To protect against liquid stains, MilliCare&#8217;s Fiber Protector provides an advanced subsurface technology that prevents stains from bonding to carpet and textile fibers.<br /><br />'+
				'It also helps maintain healthier, cleaner environments by increasing daily vacuum retrieval by 40%.<br /><br /></span></blockquote></td>'+
			'</tr>'+
		'</table>'
		,
		'<div style="background-color:#361600; width:388px; height:388px"></div>'
		);
	
}

function MovePanel(index)
{
	switch (index)
	{
		case 0:
				// from left to center
				if ((IsOnEndPosition(0)) || (IsOnEndPosition(1)) || (IsOnEndPosition(2)) || (IsOnEndPosition(3)))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
			    	StartAnimate(index);
				}
				break;
		case 1:
				// from left to center
				if ((IsOnEndPosition(0)) || (IsOnEndPosition(1)) || (IsOnEndPosition(2)) || (IsOnEndPosition(3)))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					StartAnimate(index);
				}
				break;
		case 2:
				// from left to center
				if ((IsOnEndPosition(0)) || (IsOnEndPosition(1)) || (IsOnEndPosition(2)) || (IsOnEndPosition(3)))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					StartAnimate(index);
				}
				break;
		case 3:
				// from left to center
				if ((IsOnEndPosition(0)) || (IsOnEndPosition(1)) || (IsOnEndPosition(2)) || (IsOnEndPosition(3)))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,((screenWidth - 800) / 2) - 398, 350, ((screenWidth - 817) / 2), 350);
					StartAnimate(index);
				}
				break;
		case 4:
				// from right to center
				if (IsOnEndPosition(4) || IsOnEndPosition(5) || IsOnEndPosition(6) || IsOnEndPosition(7))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					StartAnimate(index);
				}
				break;
		case 5:
				// from right to center
				if (IsOnEndPosition(4) || IsOnEndPosition(5) || IsOnEndPosition(6) || IsOnEndPosition(7))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					StartAnimate(index);
				}
				break;
		case 6:
				// from right to center
				if (IsOnEndPosition(4) || IsOnEndPosition(5) || IsOnEndPosition(6) || IsOnEndPosition(7))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					StartAnimate(index);
				}
				break;
		case 7:
				// from right to center
				if (IsOnEndPosition(4) || IsOnEndPosition(5) || IsOnEndPosition(6) || IsOnEndPosition(7))
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					MoveToEndPosition(index);
					ShowMarker(index);
				}
				else	
				{
					HidePanels();
					GetBrowserScreenSize();
					SetPath(index,screenWidth - ((screenWidth - 800) / 2)-10, 350, ((screenWidth - 800) / 2) + 402, 350);
					StartAnimate(index);
				}
				break;
	}
}    

function HidePanel(index)
{
    CancelAnimate(index);
    
    if (document.layers)
	{
		switch (index)
		{
			case 0:
		        document.getElementById("HardSurface").style.color = '#4B4B41';
				break;
			case 1:
		        document.getElementById("GroutRestoration").style.color = '#4B4B41';
				break;
			case 2:
		        document.getElementById("DisasterRecovery").style.color = '#4B4B41';
				break;
			case 3:
		        document.getElementById("FlooringConsulting").style.color = '#4B4B41';
				break;
			case 4:
		        document.getElementById("CarpetCleaning").style.color = '#4B4B41';
				break;
			case 5:
		        document.getElementById("TextileCleaning").style.color = '#4B4B41';
				break;
			case 6:
		        document.getElementById("OdorRemediation").style.color = '#4B4B41';
				break;
			case 7:
		        document.getElementById("FiberProtection").style.color = '#4B4B41';
				break;
		}
	}	
    else 
    if (document.all)
	{
		switch (index)
		{
			case 0:
				HardSurface.style.color = '#4B4B41';
				break;
			case 1:
				GroutRestoration.style.color = '#4B4B41';
				break;
			case 2:
				DisasterRecovery.style.color = '#4B4B41';
				break;
			case 3:
				FlooringConsulting.style.color = '#4B4B41';
				break;
			case 4:
				CarpetCleaning.style.color = '#4B4B41';		
				break;
			case 5:
				TextileCleaning.style.color = '#4B4B41';
				break;
			case 6:
				OdorRemediation.style.color = '#4B4B41';
				break;
			case 7:
				FiberProtection.style.color = '#4B4B41';
				break;
		}
	}	
    else 
    if (ns6)
	{
		switch (index)
		{
			case 0:
		        document.getElementById("HardSurface").style.color = '#4B4B41';
				break;
			case 1:
		        document.getElementById("GroutRestoration").style.color = '#4B4B41';
				break;
			case 2:
		        document.getElementById("DisasterRecovery").style.color = '#4B4B41';
				break;
			case 3:
		        document.getElementById("FlooringConsulting").style.color = '#4B4B41';
				break;
			case 4:
		        document.getElementById("CarpetCleaning").style.color = '#4B4B41';
				break;
			case 5:
		        document.getElementById("TextileCleaning").style.color = '#4B4B41';
				break;
			case 6:
		        document.getElementById("OdorRemediation").style.color = '#4B4B41';
				break;
			case 7:
		        document.getElementById("FiberProtection").style.color = '#4B4B41';
				break;
		}
	}
}

function HideLeftPanels()
{
	HidePanel(0);
	HidePanel(1);
	HidePanel(2);
	HidePanel(3);
}

function HideRightPanels()
{
	HidePanel(4);
	HidePanel(5);
	HidePanel(6);
	HidePanel(7);
}

function HidePanels()
{
	HidePanel(0);
	HidePanel(1);
	HidePanel(2);
	HidePanel(3);
	HidePanel(4);
	HidePanel(5);
	HidePanel(6);
	HidePanel(7);
}

//-->

CreatePanels();