$(document).ready(function() {
	
	$('#cartForm .optionQuantities').keyup(function() {
		
		if ( $(this).val() == "" || $(this).val() < 1) {
			$(this).parent().siblings(":first").find("input:checkbox").removeAttr("checked");
		} else {
			$(this).parent().siblings(":first").find("input:checkbox").attr("checked", "checked");	
		}	
		
	});
	
	$('#cartForm input:checkbox').click(function() {

		if( $(this).attr("checked") == false) {
			$(this).parent().siblings(":nth-child(2)").find(".optionQuantities").val("");
		} else {
            $(this).parent().next().find(".optionQuantities").val("1");
        }
		
	});
	
});
