﻿//Show and Hide div on mouse over / mouse out.

function show_it(divId) {
    document.getElementById(divId).className = "show_it";
}

function hide_it(divId) {
    document.getElementById(divId).className = "hide_it";
}
