﻿$(document).ready(function() {
    $.get("index.aspx", function(data) {
        $(".subnav").empty();
        $(".subnav").html($(data).find(".subnav").html());
    });
});
