Hover checkbox

Hover checkbox

Hello,

me script is:

$(\"li input\").hide();
$(\".obrli\").hover(

function () {
    $(\"li input\").show();
  },

  function () {


if ($(\"li input\").is(\":checked\"))
{
//show the hidden div
$(\"li input\").show();
}else{

    $(\"li input\").hide();
}

}

);
and html:

<li id="pozice_94" class="obrli">
<p class="image">
 <img src="image.jpg" />
<input type="checkbox" type="checkbox"  id="checkboxli" name="now[]" value="94" />
<a href="#" class="image-edit">upravit</a>
    </p>
</li>

When the image moves to show me all the checkboxes. I want the
driven image depicted a chechbox. I know that to use "this" but I can not connect with him. You advise me please someone?