$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		prev:   '#prev', 
    	next:   '#next', 		
		speed:	1000, 
		pause:   1,     // true to enable "pause on hover" 
		slideExpr:	'.slide'
	});
	
	$(".prev_next p").each(function() {
    	if ($(this).text().substr(0,1) == "P") {
			$(this).addClass('previous');
		}
	});
	
	var pageHeading = $(".entry-title").text();
	$(".archives a").each(function() {
		if ($(this).text() == pageHeading) {
			$(this).addClass('currentPage');
		}
	});
	
});