помогите реализовать, есть код. при клике меняется цвет блока. как сделать чтобы менялся не цвет, а картинки?
<input type="radio" value="red" name="radioButton" id="radioButton1">1
<input type="radio" value="black" name="radioButton" id="radioButton2">2
<div class="block">
</div>
.block{
width:200px;
height:200px;
background-color: green;
}
$('input[type="radio"]').click(function(){
$(".block").css({"background": $(this).val()});
});