$(document).ready(function(){
	$("a.show_more").click(function () {
		if ($(this).hasClass('hide')) {
			$("div.description").css("overflow","hidden");
			$("div.description").css("height","60px");
			$(this).html('Show full company description');
			$(this).removeClass('hide');
		} else {
			$("div.description").css("overflow","visible");
			$("div.description").css("height","auto");
			$(this).html('Hide full company description');
			$(this).addClass('hide');
		}
	});
});

