What i need is Toggle the each div with the relevant check box
ex:- when i checked "div1chk" i want to toggle "div1"
<input type="checkbox" id="div1chk" />
<input type="checkbox" id="div2chk" />
<input type="checkbox" id="div3chk" />
<div id="div1">
div1 showed
</div>
<div id="div2">
div2 showed
</div>
<div id="div3">
div3 showed
</div>