document.observe('dom:loaded', function() {

	$('page-area-tabbed').appendChild($('tab-controls'));

	live.tabbed_content.controls = {
		next: $('tab-next'),
		previous: $('tab-previous'),
		rotator: $('tab-rotator')
	};
	
	live.tabbed_content.controls.next.observe('click', function() {
	
		live.tabbed_content.next_tab();
		
		live.tabbed_content.controls.rotator.setStyle({
			backgroundPosition:'0px -'+(live.tabbed_content.tabs_current_index*35)+'px'
		});
		
	});
	
	live.tabbed_content.controls.previous.observe('click',function() {
	
		live.tabbed_content.previous_tab();
		
		live.tabbed_content.controls.rotator.setStyle({
			backgroundPosition:'0px -'+(live.tabbed_content.tabs_current_index*35)+'px'
		});
		
	});
	
	
	$('tab-controls').show();

});

