$(document).ready(function() {
// роллер
	$('#prev').click(function(){
		$.post(
			'/plugin/roller/index.php',	  
			{change: 'prev'},
			onReturnPics
		);
	})
	
	$('#next').click(function(){
		$.post(
			'/plugin/roller/index.php',	  
			{change: 'next'},
			onReturnPics
		);
	})	
	
	function onReturnPics(data){		
		$("#roller #center").html(data);
//		tb_init('a.thickbox');//pass where to apply thickbox	
	}
});
