
////// Features     /////////////////////////////////////////////////////////////

function features(){

var featurestext=new Array()

//specify text below. You can have as many as you wish
featurestext[0]="Appliances Home"
featurestext[1]="All Appliances"
featurestext[2]="Range Cookers"
featurestext[3]="Ovens"
featurestext[4]="Hobs"
featurestext[5]="Extractors"
featurestext[6]="Dishwashers"
featurestext[7]="Laundry"
featurestext[8]="Refrigeration"
featurestext[9]="Microwaves"


//specify corresponding links below
var featureslinks=new Array()
featureslinks[0]="/appliances/index.cgi?itemname=appliances"
featureslinks[1]="/appliances/index.cgi?itemname=appliances all"
featureslinks[2]="/appliances/index.cgi?itemname=range cookers"
featureslinks[3]="/appliances/index.cgi?itemname=ovens"
featureslinks[4]="/appliances/index.cgi?itemname=hobs"
featureslinks[5]="/appliances/index.cgi?itemname=extractors"
featureslinks[6]="/appliances/index.cgi?itemname=dishwashers"
featureslinks[7]="/appliances/index.cgi?itemname=laundry"
featureslinks[8]="/appliances/index.cgi?itemname=refrigeration"
featureslinks[9]="/appliances/index.cgi?itemname=microwaves"


document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#f3f3f3" style="border:0px solid gray"><tr><td class="graytop1" background="../backgrounds/bg3.gif">Select Feature</td></tr>')
for ( var i=0; i<=9; i++ ) 
document.write('<tr><td><div class="brand"><a href="'+rootdomain+''+featureslinks[i]+'">'+featurestext[i]+'</a></div></td></tr>')
document.write('</table>')
}

