﻿var mv = window.mv || {};
$(function() {
    mv.load = (function() {
 
        $.get('/includes/header.html', function(html) {
            $('#header-include').html(html);
        });
        $.get('/includes/nav.html', function(html) {
            $('#nav-col').html(html);
        });
        $.get('/includes/footer.html', function(html) {
            $('#footer-include').html(html);
        });
    })();
});