tireToRandom = function(){}
tiresToRandomTop = new Array()
tiresToRandomBottom = new Array()

//to add new tires to arrays just increment n or m variable one more time before intializing array element

n=0
tiresToRandomTop[n] = new tireToRandom()
tiresToRandomTop[n].image = '/img/eagle_excellence_random_tcm1095-117971.jpg'
tiresToRandomTop[n].title = 'Eagle Excellence/Excellence'
tiresToRandomTop[n].description = 'La nueva línea Excellence combina desempeño, seguridad y comfort.'
tiresToRandomTop[n].link = '/tyres/auto/new_prod/newprod2.html'
tiresToRandomTop[n].target = '_top'

n++
tiresToRandomTop[n] = new tireToRandom()
tiresToRandomTop[n].image = '/img/home_random_forteratt_tcm1095-132864.jpg'
tiresToRandomTop[n].title = 'Fortera TripleTred™'
tiresToRandomTop[n].description = 'Fortera presenta su nueva tecnología TripleTred™, que incorpora tres innovadoras zonas de tracción, fabricadas con componentes únicos que te aseguran en cualquier tipo de clima.'
tiresToRandomTop[n].link = '/tyres/ult_lt/new_prod/new_product1.html'
tiresToRandomTop[n].target = '_top'

m=0
tiresToRandomBottom[m] = new tireToRandom()
tiresToRandomBottom[m].image = '/img/assurance_tripletred_ramdom_tcm1095-117970.jpg'
tiresToRandomBottom[m].title = 'Assurance Triple Tred™'
tiresToRandomBottom[m].description = 'La llanta que cuenta con tres zonas en la banda de rodamiento únicas.'
tiresToRandomBottom[m].link = '/tyres/auto/new_prod/newprod3.html'
tiresToRandomBottom[m].target = '_bottom'

m++
tiresToRandomBottom[m] = new tireToRandom()
tiresToRandomBottom[m].image = '/img/assurance_random_tcm1095-130151.jpg'
tiresToRandomBottom[m].title = 'Assurance Fuel Max™'
tiresToRandomBottom[m].description = 'La llanta que le permite mejorar hasta un 4% en rendimiento de combustible a lo largo de su vida útil.'
tiresToRandomBottom[m].link = '/tyres/micrositios/fuelmaxsite.html'
tiresToRandomBottom[m].target = '_bottom'

m++
tiresToRandomBottom[m] = new tireToRandom()
tiresToRandomBottom[m].image = '/img/home_random_wrangler_slntarm_tcm1095-132863.jpg'
tiresToRandomBottom[m].title = 'Wrangler SilentArmor™'
tiresToRandomBottom[m].description = 'Wrangler con tecnología SilentArmor™ la llanta ideal para camionetas Pick Up de trabajo'
tiresToRandomBottom[m].link = '/tyres/ult_lt/new_prod/new_product3.html'
tiresToRandomBottom[m].target = '_bottom'

homeRandomTire = ''
for(i=1;i<=1;i++){
	j = parseInt(Math.random()*2+1)
	randPos = (j==1)?'Top':'Bottom'
	maxRand = this['tiresToRandom'+randPos].length
	tireRanded = parseInt(Math.random()*maxRand)	
	//homeRandomTire +='<p>'+tireRanded+'</p>'
	homeRandomTire +='<a href="'+this['tiresToRandom'+randPos][tireRanded].link+'" class="item" target="'+this['tiresToRandom'+randPos][tireRanded].target+'">'
	homeRandomTire +='	<img src="'+this['tiresToRandom'+randPos][tireRanded].image+'" width="85" height="120" alt="'+this['tiresToRandom'+randPos][tireRanded].title+'" border="0">'
	homeRandomTire +='	<span class="title">'+this['tiresToRandom'+randPos][tireRanded].title+'</span>'
	homeRandomTire +=	this['tiresToRandom'+randPos][tireRanded].description
             	homeRandomTire +='</a> '
}
document.write(homeRandomTire)
