$(document).ready(function()
{
// content to table translation
$('.main .contactForm').each(function()
{
var form_selector = $(this);
$(form_selector).prepend('
');
$(form_selector.find('br')).each(function()
{
// skip if this br is in head paragraph
if($(this).parent('p').length==0)
{
var $set = $();
var nxt = this.nextSibling;
while(nxt) {
if(!$(nxt).is('br'))
{
$set.push(nxt);
nxt = nxt.nextSibling;
} else break;
}
$set.wrapAll('