function loadpage() {

	
	index = 0;
    listofimages = new Array(2);
	listOfAlts = new Array(2);
	listOfButtonDest = new Array(2);
    //listofimages[0] = new Image(489,329)
    listofimages[0] = "/mcm/mixonic/images/local/Home_Promo1.png"
	listOfAlts[0]="Short-run Digipaks, premium retail packaging"
	listOfButtonDest[0]="/action/PriceCalculatorServlet"	 
	
	//listofimages[1] = new Image(489,329)
	listofimages[1] = "/mcm/mixonic/images/local/Home_Promo2.png"
	listOfAlts[1]="Make your own customs CDs and DVDs"
	listOfButtonDest[1]="/action/PriceCalculatorServlet"	 

	listofimages[2] = "/mcm/mixonic/images/local/Home_Promo3.png"
	listOfAlts[2]="Make your own customs CDs and DVDs"
	listOfButtonDest[2]="/print_services"	 


    setTimeout("changeimage()", 9000);
	

} 


function changeimage() 
{

    index = (index + 1) % listofimages.length;

	document.getElementById('background_image').src =listofimages[index];
	document.getElementById('background_image').alt = listOfAlts[index];
	document.getElementById('price_qoute_bttn').href = listOfButtonDest[index];
	// This is the number for the banner link
    //document.getElementById('bannerlink2').href = listoflinks2[index1];
    thetimer = setTimeout("changeimage()", 7000);

}

//for local page

function loadpage2() 
{
	index2 = 0;
    listofimages2 = new Array(17);
    for(i = 0; i< 17; i++)
    {
    	//alert('inside');
    	listofimages2[i] = new Image(182,67);
    	listofimages2[i].src = "/mcm/mixonic/images/local/logos/"+i+".png";
    	//alert(listofimages2[i]);
    }
    setTimeout("changeimage2()", 3000);
} 


function changeimage2() {

    index2 = (index2 + 1) % listofimages2.length ;
    
    //alert(index2);
    //alert(listofimages2);
    imageLink = listofimages2[index2].src; 

	document.getElementById('local-logo').src = imageLink;
	
    thetimer = setTimeout("changeimage2()", 3000);


}



