var pub = new Array(3);
pub['alt_selection'] = new Array(6);
pub['image'] = new Array(6);
pub['lien_img'] = new Array(6);
pub['alt_selection'][0] = 'Asus A6TC-AP037M';
pub['image'][0] = 'asus-a6tc-ap037m.jpg';
pub['lien_img'][0] = 'http://www.sabmegastore.com/fiche-asus-3402.html';
pub['alt_selection'][1] = 'AMD Athlon-64 X2 5000+';
pub['image'][1] = 'amd-athlon-64-x2-5000.jpg';
pub['lien_img'][1] = 'http://www.sabmegastore.com/fiche-amd-2427.html';
pub['alt_selection'][2] = 'Asus A7TC-7S0001M';
pub['image'][2] = 'asus-a7tc-7s001m.jpg';
pub['lien_img'][2] = 'http://www.sabmegastore.com/fiche-asus-2839.html';
pub['alt_selection'][3] = 'Disque dur Maxtor 320 Go';
pub['image'][3] = 'disque-dur-maxtor-320-go.jpg';
pub['lien_img'][3] = 'http://www.sabmegastore.com/fiche-maxtor-2608.html';
pub['alt_selection'][4] = 'MSI Geforce 7900 GTO';
pub['image'][4] = 'msi-7900-gto.jpg';
pub['lien_img'][4] = 'http://www.sabmegastore.com/fiche-msi-2832.html';
pub['alt_selection'][5] = 'Acer Aspire 5102 AWLMI';
pub['image'][5] = 'acer-5102-awlmi.jpg';
pub['lien_img'][5] = 'http://www.sabmegastore.com/fiche-acer-3434.html';
chiffre = 0;
       nbre=5;
function Affichepub()
{
code_html ='<a href="'+ pub['lien_img'][chiffre]+'"><img border="0" src="../images/selection/'+pub['image'][chiffre]+'" alt="'+ pub['alt_selection'][chiffre] +'" title="'+ pub['alt_selection'][chiffre] +'"></a>';
document.getElementById("zone_pub").innerHTML = code_html;
	if(chiffre == nbre)
        { chiffre = 0; }
        else
        { chiffre++; }
changement = 5;
window.setTimeout("Affichepub()", (changement*1000));
}