// JavaScript Document

$(document).ready(function(){
	$(".current-item .hidden").hide();
	$(".more").toggle(function(){
		$(this).parents('.current-content').find('.hidden').show();
		$(this).find('.more-br').html('close');
		$(this).attr('title', 'close');
	}, function(){
		$(this).parents('.current-content').find('.hidden').hide();
		$(this).find('.more-br').html('read more');
		$(this).attr('title', 'read more');
	});
});
