﻿$(document).ready(function () {

    $("ul.topnav li").click(function () {

        var t2 = $(this).attr('id');
        /*hide 'em */
        $('#navtest > li:not([id*=' + t2 + ']').attr("class", "hidenav");


        /*show 'em */
        $('#navtest > li[id*=' + t2 + ']').attr("class", "shownav");
    });

});
