//script/primary.js



//FEATURED WINERY 

function featured_winery()
	{
	var winery=new Array()


	//specify winery below
	winery[1]="<a href='maine_wineries_bartlett.php'>Bartlett Winery</a>"
	winery[2]="<a href='maine_wineries_blacksmiths.php'>Blacksmiths Winery</a>"
	winery[3]="<a href='maine_wineries_cellardoor.php'>Cellardoor Winery &amp; Vineyards</a>"
	winery[4]="<a href='maine_wineries_sows.php'>Sow's Ear Winery</a>"
	winery[5]="<a href='maine_wineries_winterport.php'>Winterport Winery</a>"
	winery[6]="<a href='maine_wineries_barharbor.php'>Bar Harbor Cellars</a>"
	winery[7]="<a href='maine_wineries_royalriver.php'>Royal River Winery</a>"

	var xz=Math.floor(Math.random()*winery.length)
	if (xz==0)
	    xz=1
	document.write(winery[xz])
	}


