/* package-version: 2010-09-02-B-axa-direct-2.2 */
$(document).ready(function() {  
	$(".contactForms input[type=checkbox]").inputReplace();
	$(":checkbox").each(function(i){
		var inputReplace = $(this).parent('div');
		var label 		 = $(this).parents('.info-consultation').children('label');
		var oblig		 = $(this).parents('.info-consultation').children('.oblig');
		
		inputReplace.append(oblig);
		inputReplace.append(label);
	});
    $(".contactForms input[type=file]").inputReplace();
});