Event.observe(window, 'load', function(){
	show_mail();
	show_qqqun();
}, false);

function show_mail() {
	var mix_mail = '@'+'g'+'m';
	mix_mail = 'd'+'nsp'+'od'+mix_mail;
	mix_mail = mix_mail+'ail'+'.'+'co'+'m';
	$('email').update(mix_mail);
}

function show_qqqun() {
	var qqqun = ["172428", "237989", "237990"];
	
	$('qqqun').update(qqqun[Math.floor(Math.random() * qqqun.length)]);
}

var typical_pos = 0;

function typical_chg(n) {
	typical_pos = n;
	
	var preview = new Array(
						[''],
						['/zhanjiang/images/index/typical/1.png'],
						['/zhanjiang/images/index/typical/2.png'],
						['/zhanjiang/images/index/typical/3.png'],
						['/zhanjiang/images/index/typical/4.png'],
						[''],
						[''],
						['']
						);
	$('typical-preview').style.background = 'url(' + preview[n] +')';
	$('quick-select-button').getElementsBySelector('a').each(function(selector, index) {
		if ((index + 1) == n) {
			selector.addClassName('selected');
		} else {
			selector.removeClassName('selected');
		}
	});
}

function auto_play_typical() {
	var size = $('quick-select-button').getElementsBySelector('a').size();
	
	if (size == typical_pos) {
		typical_pos = 0;
	} else {
		if (typical_pos == null) {
			typical_pos = 0;
		}
	};
	
	typical_chg(typical_pos + 1);
	
	setTimeout("auto_play_typical()", 6000);
}
