

// FOR SHOP HIGHLIGHT SECTION ON FRONT PAGE

var highlightImages = new Array() // array of images; add new ones as needed

highlightImages[0] = "http://www.shopleweekend.com/images/featureditems/candy600w.jpg"; 
highlightImages[1] = "http://www.shopleweekend.com/images/featureditems/clouds600w.jpg"; 
highlightImages[2] = "http://www.shopleweekend.com/images/featureditems/galerie600w.jpg";
highlightImages[3] = "http://www.shopleweekend.com/images/featureditems/cake-stand600w.jpg"; 


var highlightTitle = new Array() // array of title for highlightImages; match new ones w highlightImages

highlightTitle[0] = "candy cutout from the photography section! ";
highlightTitle[1] = "cloudy barrettes from the sew good section!";
highlightTitle[2] = "galerie oceanic from the photography section!";
highlightTitle[3] = "kiss me cake from the card section!";



var p = highlightImages.length;

var whichOne1 = Math.round(Math.random()*(p-1));

function showhighlightImage(){
	document.write('<img src="'+ highlightImages[whichOne1]+'">');
	}
	
function showhighlightTitle(){
	document.write( highlightTitle[whichOne1] );
}
