
$(document).ready(function() { 
  setExclEvents();
});


function setExclEvents() {
  $('input.productClick').unbind('click');
  $('input.productClick').click(function() {
    $('input[class*=\'' + $(this).attr('value') + '\']' ).attr('checked', $(this).attr('checked') || 0 );
  });
}
