$(document).ready(function() {
  

//OPEN PRINTS SECTION
$('#prints_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section').slideDown('fast');
	} else {
		 $('.prints_order_section').slideUp('fast');
	}
}); // end click()

//ADD PRINT 2
$('#add_image_1_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_2').slideDown('fast');
	} else {
		 $('.prints_order_section_2').slideUp('fast');
	}
}); // end click()

//ADD PRINT 3
$('#add_image_2_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_3').slideDown('fast');
	} else {
		 $('.prints_order_section_3').slideUp('fast');
	}
}); // end click()

//ADD PRINT 4
$('#add_image_3_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_4').slideDown('fast');
	} else {
		 $('.prints_order_section_4').slideUp('fast');
	}
}); // end click()

//ADD PRINT 5
$('#add_image_4_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_5').slideDown('fast');
	} else {
		 $('.prints_order_section_5').slideUp('fast');
	}
}); // end click()

//ADD PRINT 6
$('#add_image_5_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_6').slideDown('fast');
	} else {
		 $('.prints_order_section_6').slideUp('fast');
	}
}); // end click()

//ADD PRINT 7
$('#add_image_6_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_7').slideDown('fast');
	} else {
		 $('.prints_order_section_7').slideUp('fast');
	}
}); // end click()

//ADD PRINT 8
$('#add_image_7_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_8').slideDown('fast');
	} else {
		 $('.prints_order_section_8').slideUp('fast');
	}
}); // end click()

//ADD PRINT 9
$('#add_image_8_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_9').slideDown('fast');
	} else {
		 $('.prints_order_section_9').slideUp('fast');
	}
}); // end click()

//ADD PRINT 10
$('#add_image_9_checkbox').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.prints_order_section_10').slideDown('fast');
	} else {
		 $('.prints_order_section_10').slideUp('fast');
	}
}); // end click()


//BEGIN COVER CHOICES FOR DESIGN, PRINT, BIND FORM


//LEATHERETTE CHOSEN
$('#leatherette').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.leatherette_select').slideDown('fast');
	} else {
		 $('.leatherette_select').slideUp('fast');
	}
}); // end click()

//two_tone_leatherette CHOSEN
$('#two_tone_leatherette').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.two_tone_leatherette_select').slideDown('fast');
	} else {
		 $('.two_tone_leatherette_select').slideUp('fast');
	}
}); // end click()

//metal_plain CHOSEN
$('#metal_plain').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.metal_plain_select').slideDown('fast');
	} else {
		 $('.metal_plain_select').slideUp('fast');
	}
}); // end click()

$('#acrylic').click(function() {
	//check to make sure field is checked
	if ($(this).attr('checked')) {
		 $('.acrylic_select').slideDown('fast');
	} else {
		 $('.acrylic_select').slideUp('fast');
	}
}); // end click()

}); // end ready()

