/* This will apply link to left menu row */

$(document).ready(function() {
    $("td.MenuItem0").click(
        function() {
            document.location.href = $(this).children("a").attr("href");
        }
    );
    $("td.MenuItem1").click(
        function() {
            document.location.href = $(this).children("a").attr("href");
        }
    );
    $("td.MenuItem2").click(
        function() {
            document.location.href = $(this).children("a").attr("href");
        }
    );
});


