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);
        }
    });
}

//$(document).ready(function() {
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);
        }
    });
}



//});
