tireToRandom = function(){}
tiresToRandomTop = new Array()
tiresToRandomBottom = new Array()

n=0
tiresToRandomTop[n] = new tireToRandom()
tiresToRandomTop[n].image = '/img/eagle_excellence_random_tcm1313-154456.jpg'
tiresToRandomTop[n].title = 'Eagle Excellence'
tiresToRandomTop[n].description = 'La nueva línea Excellence combina desempeño, seguridad y comfort gracias a su exclusivo diseño asimétrico: dos diseños diferentes en la banda de rodamiento.'
tiresToRandomTop[n].link = '/tyres/auto/new_prod/excellence.html'
tiresToRandomTop[n].target = '_top'

n++
tiresToRandomTop[n] = new tireToRandom()
tiresToRandomTop[n].image = '/img/home_top_eaglef1_gsd3_tcm1313-50934.gif'
tiresToRandomTop[n].title = 'Eagle F1'
tiresToRandomTop[n].description = 'La Eagle F1 es la  llanta de Ultra Alto Desempeño diseñada para satisfacer las más altas necesidades de control y seguridad en altas velocidades.'
tiresToRandomTop[n].link = '/tyres/auto/new_prod/eagle_f1.html'
tiresToRandomTop[n].target = '_top'

n++
tiresToRandomTop[n] = new tireToRandom()
tiresToRandomTop[n].image = '/img/gps_duraplus_random_tcm1313-154457.jpg'
tiresToRandomTop[n].title = 'GPS Duraplus'
tiresToRandomTop[n].description = 'La llanta que te da exactamente lo que necesitas para manejar más kilómetros por más tiempo.'
tiresToRandomTop[n].link = '/tyres/auto/new_prod/gps_duraplus.html'
tiresToRandomTop[n].target = '_top'

m=0
tiresToRandomBottom[m] = new tireToRandom()
tiresToRandomBottom[m].image = '/img/assurance_tripletred_random_tcm1313-154455.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/assurance_tripletred.html'
tiresToRandomBottom[m].target = '_top'

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)
