$(document).ready(function() {
		
		// slideshow functions
	
		$('.slideshow').cycle({
			timeout:       5000,
			pager:      '#pager_links',
			pagerClick: stopSlideshow
		});
		
		function stopSlideshow(){
		$('.slideshow').cycle('pause');
		}
		
		$(".comment_form_wrap").hide();
		
		
		$("a.read_more").click(function(event){
		// expand the article
		$(".comment_form_wrap").slideToggle(600);
		
 		// Stop the link click from doing its normal thing
		return false;
	}); // END TOGGLE
	
	$("div.clickable").click(
	function()
	{
	    window.location = $(this).attr("url");
	    return false;
	});

	

}); // end doc init
