Paste this into your onload of your quote entity.
{codecitation style="brush: javascript;"}
var existingProducts = document.getElementById("navExistingProducts");
var writeInProducts = document.getElementById("navWriteInProducts");
if (existingProducts != null)
{
writeInProducts.style.display = "none";
}
if (writeInProducts != null)
{
writeInProducts.style.display = "none";
}
{/codecitation}