<!--
tmpPhoto = ["day","week"];

$("#boxPhotoCommentRank").ready(function(){
	$.each(tmpPhoto,function(i){
		$("#photocomment_a_"+tmpPhoto[i]).click(
			function(){
				clickTabButton( tmpPhoto[i], "photocomment" );
			}
		);
	});
});

function clickTabButton( key, genre )
{
	if ( key == "week" ) {
		$("#dayField").css("display","none");
		$("#weekField").css("display","block");
		$("#"+genre+"_a_day").css("background","transparent url(/images/tab_photorank.gif) no-repeat 0px -20px");
		$("#"+genre+"_a_week").css("background","transparent url(/images/tab_photorank.gif) no-repeat -93px 0px");
	} else {
		$("#dayField").css("display","block");
		$("#weekField").css("display","none");
		$("#"+genre+"_a_week").css("background","transparent url(/images/tab_photorank.gif) no-repeat -93px -20px");
		$("#"+genre+"_a_day").css("background","transparent url(/images/tab_photorank.gif) no-repeat 0px 0px");
	}
}
//-->