$(document).ready(function() {
	$.each( [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], function(index, value) {
		if( index != 0 ){
			$(".rnt-" + value).hide();
			$(".rnh-" + value).toggle(function(){
				$(".rnt-" + value).show("fast");
			},function(){
				$(".rnt-" + value).hide("fast");
			});
		}else{
			$(".rnh-" + value).toggle(function(){
				$(".rnt-" + value).hide("fast");
			},function(){
				$(".rnt-" + value).show("fast");
			});
		}
	});
});
