﻿function navroll(theArrow){
    document.getElementById(theArrow).style.display = "block";
};
function navroll_out(theArrow){
    document.getElementById(theArrow).style.display = "none";
};