
var smenu= [
	["http://anc.gray-cells.com/Books.html","Coming Soon"],
	["http://anc.gray-cells.com/BooksGeneral.html","General"],
	["http://anc.gray-cells.com/BooksAmericans.html","Americans"],
	["http://anc.gray-cells.com/BooksBritish.html","British"],
	["http://anc.gray-cells.com/BooksJewelry.html","Jewelry"],
	["http://anc.gray-cells.com/BooksPottery.html","Pottery"],
	["http://anc.gray-cells.com/BooksTextiles.html","Textiles"],
	["http://anc.gray-cells.com/BooksCalendars.html","Calendars"],
	["http://anc.gray-cells.com/Magazines.html","Magazines"]
	];

	/** * Display Left Menu dynamically
	 * index is the item number of the menu, starting from 1.
	 */
	   function showSM(index){
	   	var menutxt;
		for (var i=0; i<smenu.length; i++) {
			if (index == i+1) {
			menutxt=smenu[i][1].toUpperCase( );
			document.writeln('<a href="'+smenu[i][0]+'"><b>' +menutxt + '</b></a><br>');
			document.writeln('<img src="http://anc.gray-cells.com/Graphics/hri.gif" width="140" height="1" vspace="2"><br>');}
			else {
			menutxt=smenu[i][1];
			document.writeln('<a href="'+smenu[i][0]+'">' +menutxt + '</a><br>')}
			}
		}	

