var num_accs = 9;

var acc_pics = new Array (
      '<a href="accessory_dw7187.html"><img src="../images/accessories/DW7187/DW7187_accessory_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dw723.html"><img src="../images/accessories/DW723/DW723_access_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dw3232.html"><img src="../images/accessories/DW3232/DW3232_access_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dw7053.html"><img src="../images/accessories/DW7053/DW7053_accessory_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dw7080.html"><img src="../images/accessories/DW7080/DW7080_accessory_sm_1.jpg" alt="" width="130"></a>',            
    '<a href="accessory_dw7082.html"><img src="../images/accessories/DW7082/DW7082_accessory_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dw7187.html"><img src="../images/accessories/DW7084/DW7084_accessory_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dw3128.html"><img src="../images/accessories/DW3128/DW3128_access_sm_1.jpg" alt="" width="130"></a>',
    '<a href="accessory_dws7085.html"><img src="../images/accessories/DWS7085/DWS7085_access_sm_1.jpg" alt="" width="130"></a>'  
    );
    
var acc_links = new Array (
    '<a class="a-yellow" href="accessory_dw7187.html">Heavy-Duty Adjustable Miter Saw Laser System - DW7187</a>',
    '<a class="a-yellow" href="accessory_dw723.html">Heavy-Duty Miter Saw Stand - DW723</a>',
    '<a class="a-yellow" href="accessory_dw3232.html">12" 80T Fine Crosscutting Saw Blade - DW3232PT</a>',
    '<a class="a-yellow" href="accessory_dw7053.html">Dust Bag (for all DEWALT Miter Saws) - DW7053</a>',
    '<a class="a-yellow" href="accessory_dw7080.html">Extension Kit- DW7080</a>',
    '<a class="a-yellow" href="accessory_dw7082.html">Vertical Clamp - DW7082</a>',
    '<a class="a-yellow" href="accessory_dw7084.html">Crown Stops - DW7084</a>',
    '<a class="a-yellow" href="accessory_dw3128.html">Series 20 12" 80T Circular Saw Blade - DW3128</a>',
    '<a class="a-yellow" href="accessory_dws7085.html">Miter Saw L.E.D. Worklight System - DWS7085</a>'
    );
    
var acc_descs = new Array (
    'Adjustable laser line allows user to adjust line to the left or right side of blade.    <a href="accessory_dw7187.html">More &raquo;</a>',
    'Universal design works with all brands of miter saws.    <a href="accessory_dw723.html">More &raquo;</a>',
    'Premium Micro-Grain carbide produces ultra-sharp cutting edges that dramatically reduce splintering.    <a href="accessory_dw3232.html">More &raquo;</a>',
    'Universal dust bag fits all DEWALT&reg; miter saws.    <a href="accessory_dw7053.html">More &raquo;</a>',
    'Provides additional support for your material.    <a href="accessory_dw7080.html">More &raquo;</a>',
    'Clamps the work piece against the fence.    <a href="accessory_dw7082.html">More &raquo;</a>',
    'Accurately positions crown molding vertically against the saw fence.    <a href="accessory_dw7084.html">More &raquo;</a>',
    'Thin kerf for fast and smooth cutting action.    <a href="accessory_dw3128.html">More &raquo;</a>',
    'Bright L.E.D. Technology - Delivers enhanced visibility.    <a href="accessory_dw7085.html">More &raquo;</a>'
    );
    

function random_saw() {
    html = '';
    var randomnumber=Math.floor(Math.random()*num_accs)
    html = '<table width="288" border="0" cellpadding="3" cellspacing="1"><tr><td class="bg-chartontable" valign="middle" width="134" align="left" height="150"><div class="accessory">'+acc_pics[randomnumber]+'</div></td>';
    html += '<td class="bg-chartontable" valign="top" width="139" align="left"><div class="accessory_detail"><p>'+acc_links[randomnumber]+'</p>';
    html += '<p>&nbsp;</p>';
    html += '<p>'+acc_descs[randomnumber]+'</p>';
    html += '</div><p>&nbsp;</p></td></tr></table>';
    
    document.getElementById('random_accessory').innerHTML = html;
}


