  var img = new Array(15); //img pass
 img[0] = "js/slide/HP.gif";
 img[1] = "js/slide/Intel.gif";
 img[2] = "js/slide/Lenovo.gif";
 img[3] = "js/slide/Apple.gif";
 img[4] = "js/slide/MS.gif";
 img[5] = "js/slide/Acer.gif";
 img[6] = "js/slide/Seagate.gif";
 img[7] = "js/slide/AMD.gif";
 img[8] = "js/slide/HPdl380.jpg";
 img[9] = "js/slide/MacPro.jpg";
 img[10] = "js/slide/LP70Plus.jpg";
 img[11] = "js/slide/HPBL460.jpg";
 img[12] = "js/slide/HPDL580G5.jpg";
 img[13] = "js/slide/LenovoT60.jpg";
 img[14] = "js/slide/HPxw4400.jpg";

 var counter = 0;
 var counter1 = 8;
 var faze = new Array(15);//description
 faze[0] =  "";
 faze[1] =  "";
 faze[2] =  "";
 faze[3] =  "";
 faze[4] =  "";
 faze[5] =  "";
 faze[6] =  "";
 faze[7] =  "";
 faze[8] =  "<span class='prd_info'>HP ProLiant DL380 G5<br />Part # 433526-001<br />$2481.00</span><br /><a href='https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M003546313' class='more'>&gt;&gt; More</a>";
 faze[9] = "<span class='prd_info'>Apple Mac Pro<br />Part # MA970LL/A<br />$2683.00</span><br /><a href='https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004266240' class='more'>&gt;&gt; More</a>";
 faze[10] = "<span class='prd_info'>InFocus Work Big IN10 Projector<br />Part # IN10<br />$959</span><br /><a href='https://usm.channelonline.com/bcd/home/Products/index.co?id=M003927995' class='more'>&gt;&gt; More</a>";
 faze[11] = "<span class='prd_info'>HP ProLiant BL460 Blade<br />Part # 416656-B21<br />$3084.00</span><br /><a href='https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M003171047' class='more'>&gt;&gt; More</a>"; 
 faze[12] = "<span class='prd_info'>HP ProLiant DL580 G5<br />Part # 438089-001<br />$7052.00</span><br /><a href='https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004104372' class='more'>&gt;&gt; More</a>"; 
 faze[13] = "<span class='prd_info'>Lenovo ThinkPad X61<br />Part # 76758PU<br />$1135.00</span><br /><a href='https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004104981' class='more'>&gt;&gt; More</a>"; 
 faze[14] = "<span class='prd_info'>HP xw4600 Workstation<br />Part # RB428UT#ABA<br />$993.00</span><br /><a href='https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004150608' class='more'>&gt;&gt; More</a>"; 


 var URL = new Array(15);//link URL
 URL[0] =  "#";
 URL[1] =  "#";
 URL[2] =  "#";
 URL[3] =  "#";
 URL[4] =  "#";
 URL[5] =  "#";
 URL[6] =  "#";
 URL[7] =  "#";
 URL[8] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M003546313";
 URL[9] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004266240";
 URL[10] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M003927995";
 URL[11] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M003171047";
 URL[12] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004104372";
 URL[13] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004104981";
 URL[14] =  "https://usm.channelonline.com/bcd/storesite/Products/index.co?id=M004150608";

 //function for changing the Logos
 function anim()
 { 
   document.getElementById("img1").src = img[counter];
   document.getElementById("A1").href = URL[counter]; 
   counter++; 
   if(counter >7)counter = 0; //sets the counter value to -1
 }
 //function for changing the images
 function aiim()
 {
   document.getElementById("img2").src = img[counter1];
   document.getElementById("slide_prd").innerHTML = faze[counter1];
   document.getElementById("A3").href = URL[counter1]; 
   counter1++;
   if(counter1>15)counter1 = 8; 
    //sets the counter1 value to 9th element
 }

 setInterval("anim()", 6000);
 setInterval("aiim()", 6000);

//-->