$(function() {
	initfade();
	setfade($('#idxcontents'), 0);
});	


function initfade() {
	$(".disp0").hover(function () {
		$('#idxcontents').clearfade(0).showTarget(0);
	}, function () {
		$('#idxcontents').showTarget(0);
		setfade($('#idxcontents'), 0);
	});
	$(".disp1").hover(function () {
		$('#idxcontents').clearfade(1).showTarget(1);
	}, function () {
		$('#idxcontents').showTarget(1);
		setfade($('#idxcontents'), 1);
	});
	$(".disp2").hover(function () {
		$('#idxcontents').clearfade(2).showTarget(2);
	}, function () {
		$('#idxcontents').showTarget(2);
		setfade($('#idxcontents'), 2);
	});
}

function setfade(container, startid) {
	container.innerfadex({
		animationtype: 'fade',
		speed: 1000,
		timeout: 8000,
		type: 'random',
		containerheight: '150px',
		startelement: startid
	});
}


