jQuery(document).ready(function($) {
	//prep content
	$('#issues dl dd').each(function(){
		// change link to page to link to content's id
		$(this).prev('dt').children('a').attr('href', '#'+ $(this).attr('id'));
		
		// prepend dt to content as title
		$(this).prepend('<p class="title">'+ $(this).prev('dt').text() +'</p>');
	});
	
	$('a[rel*=facebox]').facebox({opacity: 0.5}) 
})
