$(document).ready(function() {
    $('.prev-comment').cycle({
		fx: 'scrollVert',
		prev: '#prev',
		next: '#next'
	});
});
$(document).ready(function() {
    $('.pr').cycle({
		fx: 'fade'
	});
});
$(function() {
	$('.slide').after('<ul class="slide-nav">').cycle({
		fx: 'turnDown',
		speed: 'fast',
		timeout: 0,
		pager: '.slide-nav',
		pagerAnchorBuilder: function(idx, slide) {
		return '<li><a href="#"><img src="' + slide.src + '" width="70" height="50" /></a></li>';
		}
	});
}); 
