$(function(){
	$('.more').bind('click', expandMore);	   
});

function expandMore(e) {
	e.preventDefault();
	var $this = $(this);
	var $more = $this.parent().parent().parent().find('.tour-cell-more-contents');
	$more.slideToggle();
}

