var browserType = "ie";
var showHideTime = 500;

function setShowHideTime() {
	//showHideTime = (browserType == 'ie'?0:500);
	showHideTime = 0;
}
function stripWhiteSpace(val) {
    return (val.replace(/^\s+/,'')).replace(/\s+$/,'');
}

function setStateSelect(selectId, countryId) {
	if (!countryId) {
		$('#'+selectId).attr('length', 0);
		$('#'+selectId).append('<option value=\"\">Select a Country</option>');
		return null;
	}
	$('#'+selectId).attr('length', 0);
	$('#'+selectId).append('<option value=\"\">Loading States...</option>');
	//if (!countryId) countryId = 228; //USA
	$.getJSON(
		"/utilities/ajax/states/?country_id="+countryId,
		function(data) {
			$('#'+selectId).attr('length', 0);
			if (data.length > 0) {
				$('#'+selectId).append('<option value=\"\"></option>');
				$.each(
					data, 
					function(i, item) {
						$('#'+selectId).append('<option value=\"'+item.id+'\">'+item.name+'</option>');
					}
				)
			} else {
				$('#'+selectId).append('<option value=\"NOSTATE\">No State Options</option>');
			}
		}
	);
}

/* jQuery UI */
$.datepicker.setDefaults({changeYear: true, changeMonth: true, dateFormat: 'yy-mm-dd', firstDay: 0, showOtherMonths: true, selectOtherMonths: true
});
