// jQuery is required. Make sure jQuery.js is loaded prior to this script.
// This script will make any 1-add-to-cart style table for ShopSite automatically
// enable the checkbox when a qty is entered.


$(function() {
    $("table").delegate(':input[name*=:qnty]', "keyup", function(){
			var boxname=$(this).attr('name');
			var qty=$(this).val();
			var parts=boxname.split(':');
			var id=parts[0];
			if (qty>0) {
				$(':input[name=itemnum][value='+id+']').attr('checked',true);
			} else {
				$(':input[name=itemnum][value='+id+']').attr('checked',false);
			}
    });
});
