/**
 * @author bdgeorge
 * Javascript for custom quote form validation and styling
 */
$(document).ready(function(){	
	//Create the show/hide events
	$("select[name='options']").change(function(){
		if ($(this).val() == 1 || $(this).val() == 2 ) {
			$('#file_extras').fadeIn('fast');
		} else {
			$('#file_extras').hide();
		}
	}).change();
	
	$("select[name='materials']").change(function(){
		if ($(this).val() == 9 ) {
			$('#materials_extras').fadeIn('slow');
		} else {
			$('#materials_extras').hide();
		}
	}).change();	
	
	$("select[name='types']").change(function(){
		if ($(this).val() == 4 ) {
			$('#types_extras').fadeIn('fast');
		} else {
			$('#types_extras').hide();
		}
	}).change();
});
