$j(document).ready(function() {
	var blubrotator = $j('#blub').rotator({ 'textContainerId': 'blub_text'});
	$j('#button1').click(function(){
		blubrotator.rotator('previous');
	});
	$j('#button2').click(function(){
		blubrotator.rotator('next');
	});
});
