
 //if( Drupal.jsEnabled){
	$(document).ready(function(){

			// code for after calc button is clicked
			// if branched, show tableTop
			var branch = checkForBranch();
			if(branch != -1){
				$("#tableMiddle").css("margin-top", "0px");
				$("#tableTop").show();
			}
			if(complete()){
				$("#addToCartButton").show();
			}
			// end code for after calc button is clicked

			// for user notes
			if(otherSugarIsChosen()){
				$("#forUserNotes").show();
			}else{
				$("#forUserNotes").hide();
				document.getNotes.notes.value = "";
			}
			// end for user notes

	});
 //}