$(document).ready(function() {
	$(".job-description").hide();
	$("h2.job-title").append('<span class="view"> [view summary]</span>');
	$(".view").live("click", function (event) {
		
		$(this).parents("h2.job-title").next(".job-description").show('slow');
		$(this).replaceWith('<span class="hide"> [hide summary]</span>');

		return true;

		});
	$(".hide").live("click", function (event) {

		$(this).parents("h2.job-title").next(".job-description").toggle('slow');
		$(this).replaceWith('<span class="view"> [view summary]</span>');
		return true;

		});

});