$(document).ready(function(){
	$("div.hider").hide();
	$(".showr").click(function(){
		$(this).next().show("normal");
		$(this).siblings("div.hider").hide();
	});
});
