
var smenu= [
	["http://anc.gray-cells.com/t_bp.html","Bauer"],
	["http://anc.gray-cells.com/p_eb.html","Burne-Jones"],
	["http://anc.gray-cells.com/p_wc.html","Crane"],
	["http://anc.gray-cells.com/t_wd.html","De Morgan"],
	["http://anc.gray-cells.com/p_ce.html","Eastlake"],
	["http://anc.gray-cells.com/t_fp.html","Fulper/Stangl"],
	["http://anc.gray-cells.com/p_gg.html","Greene &amp; Greene"],
	["http://anc.gray-cells.com/t_gf.html","Grueby"],
	["http://anc.gray-cells.com/p_eh.html","Hubbard"],
	["http://anc.gray-cells.com/t_ak.html","Knox"],
	["http://anc.gray-cells.com/p_cm.html","Mackintosh"],
	["http://anc.gray-cells.com/p_wm.html","Morris"],
	["http://anc.gray-cells.com/t_nc.html","Newcomb College"],
	["http://anc.gray-cells.com/p_ap.html","Pugin"],
	["http://anc.gray-cells.com/t_rw.html","Rookwood"],
	["http://anc.gray-cells.com/p_dr.html","Rossetti"],
	["http://anc.gray-cells.com/t_rc.html","Roycroft"],
	["http://anc.gray-cells.com/p_jr.html","Ruskin"],
	["http://anc.gray-cells.com/p_gs.html","Stickley"],
	["http://anc.gray-cells.com/t_tp.html","Teco"],
	["http://anc.gray-cells.com/p_lt.html","Tiffany"],
	["http://anc.gray-cells.com/t_vb.html","Van Briggle"],
	["http://anc.gray-cells.com/p_dv.html","Van Erp"],
	["http://anc.gray-cells.com/s_cv.html","Voysey"],
	["http://anc.gray-cells.com/p_fw.html","Wright"]
	];

	/** * 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>')}
			}
		}	

	function selectNews(){
		var NlDate = new Date();
		var NlMo = NlDate.getMonth()+1;
		document.writeln('<a href=http://anc.gray-cells.com/Newsletters/' + NlMo + '.html>Newsletter</a>');
	}
