$(function(){

	$('.comm_ajax').click(function() {
		var comm = $(this).attr('title');
		$('.comm_ajax_block').hide();
		$('.'+comm+'_block').show();
		return false;
	})
    
});


