document.write('<FIELDSET><LEGEND><font color=red>Where would you like to go next?</font></LEGEND><B><CENTER><FONT SIZE=2><A href="http://www.garagedoorpartsllc.com/bearings.html" title="garage door bearings">Bearings</A> &#8226; <A href="http://www.garagedoorpartsllc.com/end-bearing-plates.html" title="garage door end bearing plates">Bearing Plates</A> &#8226; <A href="http://www.garagedoorpartsllc.com/bottom-seal.html" title="cables">Bottom Seals</A> &#8226; <A href="http://www.garagedoorpartsllc.com/brush-seal.html" title="garage door brush seals">Brush Seals</A><br><A href="http://www.garagedoorpartsllc.com/cable-drums.html" title="garage door cable drums">Cable Drums</A> &#8226; <A href="http://www.garagedoorpartsllc.com/cable.html" title="cables">Cables</A> &#8226; <A href="http://www.garagedoorpartsllc.com/chain-hoists.html" title="chain hoists">Chain Hoists</A> &#8226; <A href="http://www.garagedoorpartsllc.com/exhaust-ports.html" title="exhaust ports">Exhaust Ports</A> &#8226; <A href="http://www.garagedoorpartsllc.com/fasteners.html" title="fasteners">Fasteners</A> &#8226; <A href="http://www.garagedoorpartsllc.com/hinges.html" title="hinges">Hinges</A><BR><A href="http://www.garagedoorpartsllc.com/domino-keyless-entry.html" title="domino keyless entry">Keyless Entry</A> &#8226; <A href="http://www.garagedoorpartsllc.com/lift-bracket.html" title="lift brackets">Lift Brackets</A> &#8226; <A href="http://www.garagedoorpartsllc.com/lift-handle.html" title="lift handles">Lift Handles</A> &#8226; <A href="http://www.garagedoorpartsllc.com/lock-handles.html" title="lock handles">Lock Handles</A> &#8226; <A href="http://www.garagedoorpartsllc.com/lubricant.html" title="lubricant">Lubricant</A><BR><A href="http://www.garagedoorpartsllc.com/electric-opener-parts.html">Operator Parts</A> &#8226; <a href="http://www.garagedoorpartsllc.com/stop-guard.html">Parking Wedges</a> &#8226; <A href="http://www.garagedoorpartsllc.com/pulleys.html" title="pulleys">Pulleys</A><br><A href="http://www.garagedoorpartsllc.com/radio-controls.html">Radio Controls</A> &#8226; <A href="http://www.garagedoorpartsllc.com/rollers.html" title="rollers">Rollers</A> &#8226; <A href="http://www.garagedoorpartsllc.com/rubber-astragal.html" title="rubber astragal">Rubber Astragal</A> &#8226; <A href="http://www.garagedoorpartsllc.com/safety-reverse-devices.html" title="Safety Reverse Devices">Safety Reverse</A><br><A href="http://www.garagedoorpartsllc.com/sliding-door-hardware.html" title="Sliding Door Hardware">Sliding Door Parts</A> &#8226; <A href="http://www.garagedoorpartsllc.com/electric-solenoid-lock.html" title="interior solenoid lock">Solenoid Lock</A> &#8226; <A href="http://www.garagedoorpartsllc.com/springs.html" title="springs">Springs</A> &#8226; <A href="http://www.garagedoorpartsllc.com/top-roller-carrier.html" title="top roller carriers">Top Roller Carriers</A><br><A href="http://www.garagedoorpartsllc.com/track.html" title="garage door track">Tracks</A> &#8226; <A href="http://www.garagedoorpartsllc.com/todco-door.html" title="truck/trailer door parts">Truck/Trailer Doors</A> &#8226; <A href="http://www.garagedoorpartsllc.com/vinyl-strip-doors.html" title="vinyl strip doors">Vinyl Strip Doors</A><br><a href="mailto:sales&#64;garagedoorpartsllc.com?subject=Help Me">Contact Us</a> &#8226; <A href="http://www.garagedoorpartsllc.com/privacy.html">Privacy Policy</A> &#8226; <A href="http://ww6.aitsafe.com/cf/review.cfm?userid=8516403">View Shopping Cart</A></FONT></CENTER></B></FIELDSET>');
rgb_beg=[48,48,184]
rgb_end=[255,153,51]
over_spd=15
out_spd=15

document.onmouseover = domouseover;
document.onmouseout  = domouseout;
document.onclick     = doclick;

dualhex = new Array()
hex = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"]
for(i = 0; i < 256; i++) dualhex[i] = hex[parseInt(i / 16)] + hex[i % 16]

function domouseover() {
  if (document.all && window.event.srcElement.tagName == "A")
    fade(window.event.srcElement.sourceIndex, 1)
}

function domouseout() {
  if (document.all && window.event.srcElement.tagName == "A")
    setTimeout("fade('" + window.event.srcElement.sourceIndex + "', 0)", over_spd * over_spd * 2)
}

function doclick() {
  if (document.all && window.event.srcElement.tagName == "A")
    window.event.srcElement.blur();
}

function fade(element, over) {
  if(over) {
    beg = rgb_beg;
    end = rgb_end;
    spd = over_spd;
  }
  else {
    beg = rgb_end;
    end = rgb_beg;
    spd = out_spd;
  }
  for(i = 0; i <= spd; i++)
    setTimeout("document.all[" + element + "].style.color = '#"
     + dualhex[Math.floor(beg[0] * ((spd - i) / spd) + end[0] * (i / spd))]
     + dualhex[Math.floor(beg[1] * ((spd - i) / spd) + end[1] * (i / spd))]
     + dualhex[Math.floor(beg[2] * ((spd - i) / spd) + end[2] * (i / spd))] + "';",  i * spd);
}