$(document).ready(function() {
	var interval = 600;
	$('a.more').click(function() {
		$(this).css('display' , 'none');
		$(this).next().slideToggle( interval );
		$(this).parent().find('a.less').css('display' , 'block');
		return false;
	});
	$('a.less').click(function() {
		$(this).css('display' , 'none');
		$(this).prev().slideToggle( interval );
		$(this).parent().find('a.more').css('display' , 'block');
		return false;
	});

});
