$(document).ready(function() {
	ss_asoebi_show(1);
	images_asoebi = [];
	for (var i = 1; i < 34; i++) {
		var img = new Image();
		img.src = '/images/asoebi/alphabet-' + i + '.gif';
		images_asoebi.push(img);
	}
});
function ss_asoebi_show(i) {
	$('#ss_asoebi')[0]['image_cur'] = i;
	$('#ss_asoebi img')[0].src = '/images/asoebi/alphabet-' + i + '.gif';
	ss_asoebi_next();
}

function ss_asoebi_next() {
	$('#ss_asoebi img')[0].src = '/images/asoebi/alphabet-' + $('#ss_asoebi')[0]['image_cur'] + '.gif';
	setTimeout(ss_asoebi_next, 4000);
	if ($('#ss_asoebi')[0]['image_cur'] == 33) {
		$('#ss_asoebi')[0]['image_cur'] = 1;
	} else {
		$('#ss_asoebi')[0]['image_cur'] += 1;
	}
}
