$(document).ready(function() {
	
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		pager:  '#rwpager' 
	});
	
	$("#rwposts .recentPost:even, #rwevents .recentPost:even, ").addClass("even");
	$(".wp-post-image").hover(function() {
		$(this).stop().fadeTo("normal", 0.8);
		}, function(){
		$(this).stop().fadeTo("normal", 1.0)});

	
});