var to;
var itab = 1;
$(document).ready (function () {
	$("#contenttabs > .tab").hide ();
	$(".t").click (on_t_click);
	$("#t1").click ();
	to = setTimeout (show_next_tab, 5000);
});

function on_t_click () {
    clearTimeout (to);
    $(".t").css("background-color", "transparent");
    $(this).css("background-color", "#E0E0E0");
    $("#contenttabs > .tab").hide ();
    $("#tab"+$(this).attr('id').substr (1)).show ();
}

function show_next_tab () {
	itab++;
	if (itab > 5)
	    itab = 1;
	$(".t").css("background-color", "transparent");
	$("#t"+itab).css("background-color", "#E0E0E0");
	$("#contenttabs > .tab").hide ();
	$("#tab"+itab).show ();
	to = setTimeout (show_next_tab, 5000);
}

