$(document).ready(function() {
	    		$('#event_posts').after('<ul id="events_nav">').cycle({
	        		fx: 'turnLeft',
	        		speed:  500,
	        		pager:  '#events_nav',
	        		pauseOnPagerHover: true,
	        		pagerAnchorBuilder: function(idx, slide) 
	        		{
						post_info = $('.post_content',slide);
	            		return '<li>' + post_info.html() + '</li>';
	        		}
	    	});
	    	     // $('#slideshow').cycle({fx: 'fade',speed:  2000});
});

$(document).ready(function(){

	$('.event_link').click(function() { location.href = this.href} )	
});
