
$(document).ready(function() {
// hide all poems except first
$("div.poem").hide().filter(":first").show();
$('div#secondary_col > ul > li >a:first').css({ borderBottom:"1px dotted #000"});	

$("div#secondary_col > ul > li >a").bind("click", function(e){
	$('div#secondary_col > ul > li >a').css({ border:"none"});
	$(this).css({ borderBottom:"1px dotted #000"});			
	$('div.poem').hide();
	var poemRequested = $(this).attr("href");
	$(poemRequested).show();	
	Mint.TT.behavior.getURL('index.html#'+'poemRequested') 
	return false; 	// cancel click event
	});
});