﻿function HightLight(index)
{
	document.getElementById("Top"+(index)).style.background='#EBEEF2';
}
function UnHightLight(index)
{
	document.getElementById("Top"+(index)).style.background='url(../images/topbg.gif)';
}

function ShowAnnonces(tpa)
{
	TPA = tpa;
	if(!stop)
	{
		if(AnnoncesIndex==10)AnnoncesIndex = 0;
		index= AnnoncesIndex;
		for(x=0;x<10;x++)
		{
			document.getElementById("Top"+(x+2)).style.background='#EFEFEF';
		}
		AnnoncesIndex= AnnoncesIndex+ 1;
		document.getElementById("Top"+(index+2)).style.background='#fff';
	}
}

for(x=0;x<10;x++)
{
	y = x+2;
	document.getElementById("description"+y).innerHTML = "<a  href='../popups/details.php?categorie="+Annonces[x][0]+"&id="+Annonces[x][1]+"' target='_blank' >" +Annonces[x][2]+ "</a><p class='TopPrix'>"+Annonces[x][3]+"</p>";	
	document.getElementById("img"+y).src = Annonces[x][4];
	document.getElementById("img"+y).alt = Annonces[x][2];
}
ShowAnnonces(Annonces);