﻿$(function ()
{
    // prevent the window from scrolling to the top 
    // when a form is validated
    window.scrollTo = function () { }
});

function setSelectedMenuItem(id)
{
    $(id).addClass("active");
    $(id + " > a > img").attr("src", "images/button-over.gif");
}
