$(document).ready(function() {
	$('div.company div.description').hide();
	$('div.company div.action').show();
	$('div.company div.action a').click(function () {
		$(this).parent().parent().find('div.description').toggle('fast');
		return false;
	});
});
