(function($) {

 $(document).ready(function() {

function writePanel(url, id) {
    $.ajax({
        type: "GET",
        url: url,
        dataType: "html",
        async: false,
        success: function(data) {
            var content = $(data).find('#' + id).html();
            document.write(content);
        }
    });
}

if (location.href.match("services") && location.href!='http://www.lyntonweb.com/services/'&& location.href!='http://www.lyntonweb.com/services')
{

$.ajax({
        type: "GET",
        url: "/services",
        dataType: "html",
        async: false,
        success: function(data) {
            var content = $(data).find('#submenu').html();
            var content = '<div class="block">' + $(data).find('div.block:first').html() + '</div>';
            $('#foxboro_col1').prepend(content);
        }
    });
}


if (location.href.match("/crm/") && location.href!='http://www.lyntonweb.com/crm/'&& location.href!='http://www.lyntonweb.com/crm')
{

$.ajax({
        type: "GET",
        url: "/crm",
        dataType: "html",
        async: false,
        success: function(data) {
            //var content = $(data).find('#submenu').html();
            var content = '<div class="block">' + $(data).find('div.block:first').html() + '</div>';
            $('#foxboro_col1').prepend(content);
        }
    });
}

});

})(jQuery);
