'select',
'#title' => t('Image size'),
'#default_value' => variable_get('audio_image_size', 170),
'#options' => array(
'170' => '170 X 170',
'150' => '150 X 150',
'125' => '125 X 125',
'100' => '100 X 100',
'75' => '75 X 75',
),
'#description' => t('The size (in pixels) that the theme will display the images. Default is 170x170.'),
);
$form['audio_default_image_type'] = array(
'#type' => 'select',
'#title' => t('Default image type'),
'#default_value' => variable_get('audio_default_image_type', 0x03),
'#options' => audio_image_type_dirty_array(),
'#description' => t("Select the image type you would like displayed. NOTE: If an audio node does not have an image of this type associated with it, a random image will be chosen.")
);
return system_settings_form($form);
}