$(function() {
	
	$(".blog-post").each(function() {
		var src = $(this).find('.encoded img:first').attr('src');
		$(this).find('img:first').attr('src', '/image.php?w=145&h=90&img=' + src);
	});
	
    $('#home-slider').cycle({
        speed: 1000,
        timeout: 6500,
        pager: '#slider-navigation',
		pause: true,
		pauseOnPagerHover: true,
		pagerAnchorBuilder: function(idx, slide) {
	        return '<a class="image-' + (idx + 1) + '" href="#">' + idx + '</a>'; 
	    }
    });
	
});
