//  JNEWNEW.JS   What's new on the website?    [03jan2008]

//  The listed links will be displayed in a dropdown box on the homepage.

//  01sep2008 error - table not closed
//  21sep2008 tweak for Firefox/Chrome

//  Format:  " date-&-text | link ",

var field = new Array();
var newnew = new Array(

// LINKS LIST ---------------------------------------------------------------

"31may2009 NEC event dates 20-23 August|heventt.htm",
"31may2009 New Hon Sec - Chris Bone|hcontact.htm",
"24feb2009 Updated library list|hlibl.htm",
"08jan2009 2009 programme|hevents.htm",
"10nov2008 Quilt Exhibition PHOTOS|hphoto8.htm",
"10nov2008 Pictures of baby quilts|hfoto8.htm?jt08baby",
"30sep2008 Updated library list|hlibl.htm",
"01sep2008 Quilt Exhibition|hqe08.htm",
"03jan2008 2008 programme|hevents.htm",
"03jan2008 Summer and autumn newsletters|hnews.htm",
"11jun2007 New links|hlinks.htm",
"28dec2006 Quilts R Us exhibition photos|hphoto6.htm",
"13dec2006 2007 programme|hevents.htm",
"26feb2006 Jan/Feb newsletters|hnews.htm",

// --------------------------------------------------------------------------


// Working code -------------------------------------------------------------
"");
document.write('<form><div align="center"><center><table border="0" cellpadding="0" cellspacing="0"><tr><td><span class="foami">&nbsp;What we\'ve added recently...</span></td></tr><tr><td><select size="3" class="combobox" href="#top" name="Dropdowns" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}">'); //[21sep2008]
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></td></tr></table></center></div></form>');    
// --------------------------------------------------------------------------
