function createMenu()
{
	/*
	Temporarily Disabled Menu Options
	MenuOpts.push(createOpt("unit-f.html","Unit-F 1 Bedroom w/ Study"));
	End Disabled Menu Options
	*/
	var MenuOpts = new Array();
	var deflt = document.createElement('option');
	deflt.text = "Choose a floor plan";
	deflt.selected = true;
	MenuOpts.push(deflt);
	MenuOpts.push(createOpt("index.html","Floor Plans"));
	MenuOpts.push(createOpt("unit-a.html","Unit-A 2 Bedroom"));
	MenuOpts.push(createOpt("unit-a-215.html","Unit-A215 2 Bedroom"));
	MenuOpts.push(createOpt("unit-a-201.html","Unit-A201 2 Bedroom"));
	MenuOpts.push(createOpt("unit-b.html","Unit-B 1 Bedroom"));
	MenuOpts.push(createOpt("unit-c.html","Unit-C 1 Bedroom"));
	MenuOpts.push(createOpt("unit-c2.html","Unit-C2 1 Bedroom"));
	MenuOpts.push(createOpt("unit-d.html","Unit-D 1 Bedroom"));
	MenuOpts.push(createOpt("unit-d2.html","Unit-D2 1 Bedroom"));
	MenuOpts.push(createOpt("unit-e.html","Unit-E 1 Bedroom"));
	
	MenuOpts.push(createOpt("unit-g.html","Unit-G 1 Bedroom w/ Study"));
	MenuOpts.push(createOpt("unit-h.html","Unit-H 1 Bedroom"));
	MenuOpts.push(createOpt("unit-h2.html","Unit-H2 1 Bedroom"));
	MenuOpts.push(createOpt("unit-h3.html","Unit-H3 1 Bedroom"));
	MenuOpts.push(createOpt("unit-j.html","Unit-J 2 Bedroom"));
	var sel = document.getElementsByTagName("select")[0];
	clearMenu(sel);
	for(x in MenuOpts)
	{
		sel.options[sel.options.length]=MenuOpts[x];
	}
	
}
function createOpt(val, text)
{
	var opt=document.createElement('option');
	opt.text = text;
	opt.value = val;
	return opt;
}
function clearMenu()
{
	var menu = document.getElementsByTagName("select")[0];
	var i=menu.options.length;
	for(i=menu.options.length;i>0;i--)
	{
		menu.remove(menu.options[i]);
	}
}