function get_next()
{
	$.post(
		'/agroma/getciekawostka',
		{id: $('.ciekawostki-wrap h2').attr('id'),
		direction: 'next' },
		function( data ) {
			$("#ciekawostki-content").html( data );
		});
}
function get_prev()
{
	$.post(
		'/agroma/getciekawostka',
		{id: $('.ciekawostki-wrap h2').attr('id'),
		direction: 'prev' },
		function( data ) {
			$("#ciekawostki-content").html( data );
		});
}
$(function(){

	get_next();
	$('.ciekawostki-wrap .next').click(get_next);
	$('.ciekawostki-wrap .prev').click(get_prev);
	
});
