function ftatv_init_class_event_submit_form ()
{
	// select next year
	document.getElementById("edit-field-class-date-start-0-value-year").selectedIndex = 2;
	
	// set default class time
	//document.getElementById("edit-field-class-time-0-value").value = "9:00AM - 5:00PM";
	
	// begin: set default class node reference
	/*var ftatv_init_class_event_class_nid = 39;
	var ftatv_init_class_event_class_select = document.getElementById("edit-field-class-name-nids");
	for (i = 0; i < ftatv_init_class_event_class_select.length; i++) {
		if (ftatv_init_class_event_class_select[i].value ==  ftatv_init_class_event_class_nid) {
			ftatv_init_class_event_class_select.selectedIndex = i;
			break;
		}
	}*/
	// end
}

function ftatv_class_date_start_next ()
{
	document.getElementById("edit-field-class-date-end-0-value-mon").selectedIndex = document.getElementById("edit-field-class-date-start-0-value-mon").selectedIndex; 
	document.getElementById("edit-field-class-date-end-0-value-mday").selectedIndex = document.getElementById("edit-field-class-date-start-0-value-mday").selectedIndex;
	document.getElementById("edit-field-class-date-end-0-value-year").selectedIndex = document.getElementById("edit-field-class-date-start-0-value-year").selectedIndex;
}

function ftatv_class_date_end_next ()
{
	var cdsm = document.getElementById("edit-field-class-date-start-0-value-mon");
	var cdsd = document.getElementById("edit-field-class-date-start-0-value-mday");
	var cdsy = document.getElementById("edit-field-class-date-start-0-value-year");
	
	var cdsm_t = "" + cdsm.options[cdsm.selectedIndex].value; if (cdsm_t.length == 1) { cdsm_t = "0" + cdsm_t; } 
	var cdsd_t = "" + cdsd.options[cdsd.selectedIndex].value; if (cdsd_t.length == 1) { cdsd_t = "0" + cdsd_t; } 
	var cdsy_t = "" + cdsy.options[cdsy.selectedIndex].value;
	
	var cdem = document.getElementById("edit-field-class-date-end-0-value-mon");
	var cded = document.getElementById("edit-field-class-date-end-0-value-mday");
	var cdey = document.getElementById("edit-field-class-date-end-0-value-year");
	
	var cdem_t = "" + cdem.options[cdem.selectedIndex].value; if (cdem_t.length == 1) { cdem_t = "0" + cdem_t; } 
	var cded_t = "" + cded.options[cded.selectedIndex].value; if (cded_t.length == 1) { cded_t = "0" + cded_t; } 
	var cdey_t = "" + cdey.options[cdey.selectedIndex].value;
	
	document.getElementById("edit-field-class-date-start-t-0-value").value = cdsy_t + "-" + cdsm_t + "-" + cdsd_t;
	document.getElementById("edit-field-class-date-end-t-0-value").value = cdey_t + "-" + cdem_t + "-" + cded_t;
	
	//alert(" INSERT INTO uc_attribute_options (aid, name) VALUES (1, '" + document.getElementById("edit-field-class-date-start-t-0-value").value + "') ");
}

function ftatv_class_event_sold_out_update_select_options (date_string)
{
	var select = document.getElementById("edit-attributes-1");
	var options = select.options;
	
	for (var i = 0; i < options.length; i++)
	{
		if (options[i].text.indexOf(date_string) != -1)
		{
			if (!isIE())
				options[i].disabled = true;
			else
			{
				select.remove(i);
			}
		}
	}
}

function isIE()
{
	return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}

