$(document).ready(function(){
	    initFormHumane();
});

function initFormHumane(){
	$('form').each(function(){
		h = $('<input/>',{ type:"hidden", name:"h", value:"1" }).appendTo($(this));
		//alert($('div').html($(this)).html());
	//$('body').append($('<div id="miniSearchBox"></div>'));
		//$(this).append('<input type="hidden" name="h" value="1" />');
		//$(this).append(h);
		//h.appendTo($(this));
	}); 
	//$('span.mailcode').each(function(){
		//var mail = $(this).html();
		//mail = mail.replace('<span>','');
		//mail = mail.replace('</span>','');
		//mail = mail.replace('__arobase__','@');
		//mail = mail.replace('__point__','.');
		//$(this).html(mail);
	//}); 
}


