jQuery(document).ready(function(){
	jQuery('#edit-attributes-14').change(function() {
		jQuery('#edit-attributes-3').attr('disabled',  jQuery(this).val() == '29').val('44');
		jQuery('#edit-attributes-7').attr('disabled',  jQuery(this).val() == '29').val('43');
	});
});

jQuery(document).ready(function(){
	jQuery('#edit-attributes-18').change(function() {
		jQuery('#edit-attributes-7').attr('disabled',  jQuery(this).val() == '56').val('43');
	});
});

jQuery(document).ready(function(){
	jQuery("#edit-attributes-3").change(function() {
		if(this.value == "2") {
			jQuery("#edit-attributes-7 option[value='39']").remove();
		}
	}).change();
	jQuery("#edit-attributes-7").change(function() {
		if(this.value == "39") {
			jQuery("#edit-attributes-3 option[value='2']").remove();
		}
	}).change();
});

jQuery(document).ready(function(){
	jQuery('#edit-attributes-2').change(function() {
    if(this.value == '11') {
      jQuery("#edit-attributes-4 option[value='4']").remove();
    }
    
	});
});;
// auto updating attributes
jQuery( function() {
    var Cart = jQuery('.add-to-cart');
    var sum = 0;
    Cart.bind('change', function() {
       jQuery('select').each(function() {
           // console.log(jQuery(this).text());
       }); 
    });
});
;

