$(document).ready(function() {
	$(".show-more-button").click(function (e) {
		var idt = $(this).parent().siblings(
				'.idea-description-text');
		var html = idt.html();
		if (idt.css('height') != 'auto') {
			idt.css('height', 'auto');
			idt.css('overflow', 'visible');
			$(this).attr('value', 'Show Less');
			idt.html('<pre>' + html + '</pre>');
			idt.siblings(
					'.idea-description-more-dots').css('display', 'none');
		} else {
			idt.css('height', '2.6em');
			idt.css('overflow', 'hidden');
			$(this).attr('value', 'Show More');
			html = html.substring(5, html.length - 6);
			idt.html(html);
			idt.siblings(
					'.idea-description-more-dots').css('display', 'block');
		}
	});
});
