$(function(){
 $('input[@type=checkbox]').each(function(){
   $(this).hide().after("<img src=\"http://vodkarodnik.com/images/checked.gif\" class=\"checkbox on\" alt=\"checkbox\" /><img src=\"http://vodkarodnik.com/images/not_checked.gif\" class=\"checkbox off\" alt=\"checkbox\" />")
   if ($(this).attr('checked') == 'checked') {
         $(this).next().next().hide()
      }else{
         $(this).next().hide();
      }
   $([$(this).next(),$(this).next().next()]).each(function(){$(this).click(function(){
      if ($(this).hasClass('on')){
         $(this).hide().next().show();
         $(this).prev().attr('checked','')
      }else{
         $(this).hide().prev().show();
         $(this).prev().prev().attr('checked','checked') 
      }
   })});
 })
})
