$(document).ready(function() {
	$('.option-image').toggle(function() {
		var src = $(this).attr('src'); 	
		src = src.replace(/-(off)\./, '-on.');
		$(this).attr('src', src);
		
		$('#option-'+this.id).attr('checked', true);


		


	

	
	}, function() {
	  var src = $(this).attr('src'); 	
		src = src.replace(/-(on)\./, '-off.');
		$(this).attr('src', src);
		
		$('#option-'+this.id).attr('checked', false);
		
	});	
    
    
    
 
	
      	
      	
       	

});
