//  JNEWNEW.JS   What's new on the website?    [05nov2007]

//  The listed links will be displayed in a dropdown box on the homepage.

//  Format:  " date-&-text | link ",

var field = new Array();
var newnew = new Array(

// LINKS LIST ---------------------------------------------------------------

"07nov2007 Book for New Years Eve|hnews.htm#ny",
"06nov2007 Sounds of Joan in Memories|hjoan01.htm",
"02nov2007 Email from Owen Jones in Memories|hmems03.htm",
"31oct2007 Photo of Joan|hpixi.htm?jpic08",
"21oct2007 Beaujolais Nouveau 15nov|hnews.htm#bb",
"21oct2007 Gordons breakfasts|hnews.htm#gb",

// --------------------------------------------------------------------------


// Working code -------------------------------------------------------------
"");
document.write('<form><div align="center"><center><select size="3" href="#top" name="Dropdowns" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1"><optgroup class="foamh" label="What we\'ve added recently...">');
for (i=0;i<newnew.length - 1;i++) {
    field = newnew[i].split("|");
    document.write('<option class="foam" value="' + field[1] + '">' + field[0] + '</option>');
}
document.write('</optgroup></select></center></div></form>');    
// --------------------------------------------------------------------------
