function doCustomMenu()
{


	var isSecureLogon = (document.URL.toLowerCase().indexOf("secure") > 0);
				
	if (isSecureLogon)
	{
		// Collections menu
		document.write("<div id=\"mnuCollections\" class=\"dropmenudiv_c\">");
		document.write("<a href=\"winter_magnolia.html\">Winter Magnolia</a>");
		document.write("<a href=\"silktales.html\">Silk Tales</a>");
		document.write("<a href=\"ballerina.html\">Ballerina Pleat</a>");
		document.write("<a href=\"autumnrose.html\">Autumn Rose</a>");
		document.write("</div>");
	} else {
		// Collections menu
		document.write("<div id=\"mnuCollections\" class=\"dropmenudiv_c\">");
		document.write("<a href=\"collections.html\">Collections</a>");
		document.write("<a href=\"http://secure.kushushu.com/collections.html\">Logon</a>");
		document.write("</div>");
	}
				
}