$(function(){
var tmp = $.ajax({
url: '/lbi/contact.html',
cache: false,
async: false
}).responseText;
var target = $('[id^=inc_]');
jQuery.each(target, function() {
var include = $(this).attr('id');
var reg = new RegExp('<\!--'+include+'-->([\n\r]|.)*<\!--\/'+include+'-->');
var html = tmp.match(reg);
$(this).html(html[0]);
});
});