var topvideosstate = 0;
function toggletopvideos(topvideos) {
	if (topvideos === 0) {
		$("#popular").show();
		$("#newest").hide();
		$("#naruto").hide();
		$("#narutoep").hide();
		$("#shipp").show();
		$("#bleach").hide();
	} else if (topvideos === 1) {
		$("#newest").show();
		$("#popular").hide();
		$("#naruto").hide();
		$("#narutoep").hide();
		$("#shipp").hide();
		$("#bleach").show();
	} else if (topvideos === 2) {
		$("#naruto").show();
		$("#popular").hide();
		$("#newest").hide();
		$("#narutoep").show();
		$("#shipp").hide();
		$("#bleach").hide();
	} else if (topvideos === 3) {
		$("#shipp").show();
		$("#naruto").hide();
		$("#narutoep").hide();
		$("#popular").show();
		$("#newest").hide();
		$("#bleach").hide();
	} else if (topvideos === 4) {
		$("#narutoep").show();
		$("#naruto").show();
		$("#shipp").hide();
		$("#popular").hide();
		$("#newest").hide();
		$("#bleach").hide();
	} else if (topvideos === 5) {
		$("#bleach").show();
		$("#narutoep").hide();
		$("#naruto").hide();
		$("#shipp").hide();
		$("#popular").hide();
		$("#newest").show();
	}
	if (topvideos !== topvideosstate) {
		topvideosstate = topvideos;
		$('.rlink').toggleClass('rcurrent');
	}
}