$(document).ready(function(){
	$('.past').focus(function(){
		var i = parseInt($(this).attr('rel'));
		$('#past'+(i+1)).show();
		$(this).focus();
	});
	$('.now').focus(function(){
		var i = parseInt($(this).attr('rel'));
		$('#now'+(i+1)).show();
		$(this).focus();
	});
	$('.best').focus(function(){
		var i = parseInt($(this).attr('rel'));
		$('#best'+(i+1)).show();
		$('#bestex'+(i+1)).show();
		$(this).focus();
	});
	$('.addc').focus(function(){
		var i = parseInt($(this).attr('rel'));
		$('.add'+i).show();
		$(this).focus();
	});
});