function showimgtag(i){
	var objs = $('#top_left2').find('a');
	$('#bigRecImg').fadeOut(100,function(){
		$('#bigRecImg').attr('src',bigImgArr[i]);
		$('#bigRecImg').parent().attr('href',objs.eq(i).attr('href')).attr('title',objs.eq(i).attr('title'));
		$('#left_explain a').html(objs.eq(i).attr('title'));
		$('#bigRecImg').fadeIn(1000);
	});
	if(objs.get(i).parentNode.href != undefined){
		$('#bigimghref').attr('href',objs.get(i).parentNode.href);
	}
}
function initimgtab(){
	var objs = $('#top_left2').find('a');
	objs.each(function(i){
		this.onmouseover = function(){
			showimgtag(i);
			clearTimeout(t);
		};
		this.onmouseout = function(){
			t=setTimeout("chimgtab()",5000);
		}
	});
}

function chimgtab(){
	now= (now+1) % $('#top_left2').find('a').length;
	showimgtag(now);
	t=setTimeout("chimgtab()",5000);
}
initimgtab();
var now = 0;
var t=setTimeout("chimgtab()",5000);
