$(document).ready(function(){
	// create options link
	$("table .activity div").before("<p class='more'><a href='#'>View Options</a></p>");
	
	// make link toggle options
	$("table .activity p.more a").click(function () {
		$(this).parent().next().slideToggle("slow");
		return false;
	});;
});