var pics = new Array();
var links = new Array();
pics[6] = new Image(); 
pics[6].src = "images/HP_images1.jpg";
links[6]="http://www.bravobride.com/category/reception";

pics[5] = new Image(); 
pics[5].src = "images/HP_images2.jpg";
links[5]="http://www.bravobride.com/category/ceremony";

pics[4] = new Image(); 
pics[4].src = "images/HP_images3.jpg";
links[4]="http://www.bravobride.com/category/accessories";

pics[3] = new Image(); 
pics[3].src = "images/HP_images4.jpg";
links[3]="http://www.bravobride.com/category/party-and-shower-items";

pics[2] = new Image(); 
pics[2].src = "images/HP_images5.jpg";
links[2]="http://www.bravobride.com/category/dresses";

pics[1] = new Image(); 
pics[1].src = "images/HP_images6.jpg";
links[1]="http://www.bravobride.com/category/table-centerpiece";

var PicInt = 0;
var Direction = "Forward";
var NumPics = (pics.length) - 1;
var TimeInt = 9000;
function ProdPictureChange(){
		if(Direction == "Forward"){
		  PicInt = PicInt + 1;
	    if(PicInt > NumPics){PicInt = 1;}
		}
		if(Direction == "Back"){
		  PicInt = PicInt - 1;
		  if(PicInt == 0){PicInt = NumPics;}
		}
		opacity('HomeMarqueePicHolder', 0, 100, 1000);
		setTimeout("ProdMenuPicture("+PicInt+")",100);
}
function ProdMenuPicture(pic_id){
  document.getElementById('HomeMarqueePicHolder').innerHTML = '<a href="'+links[pic_id]+'"><img src="'+pics[pic_id].src+'" alt="'+pics[pic_id].src+'" /><\/a>';

}
