function displaydiv(id) {
    $("div[id^=tu]").hide().eq(id).show();
    $(".navrj").children("li").each(function(k){
		var li=$(this);
		var a=li.children("a");
		switch(k){
			case id:
			a.addClass("nowj");
			break;
			default:
			a.removeClass("nowj");
			break;
			}
	});

};
$(function() {
var len = $(".navrj > li").length;
var index = 0;
var adTimer;
$(".navrj li").mouseover(function() {
index = $(".navrj li").index(this);
    displaydiv(index);
}).eq(0).mouseover();

$(".jdt_contop").hover(function() {
    clearInterval(adTimer);
}, function() {
    adTimer = setInterval(function() {
    displaydiv(index)
        index++;
        if (index == len) { index = 0; }
    }, 3000);
}).trigger("mouseleave");
})



