$(document).ready(function(){

	$(".show").toggle(function(){ $(this).parents(".row").find(".hidden").show(); }, 
		function(){ $(this).parents(".row").find(".hidden").hide(); });

});
