﻿$(function() {
	$('div.startbutton-tabs > ul').each(function() {
		$(this).tabs({
			fx: [
				{opacity: 'toggle', duration: 'fast'},
				{opacity: 'toggle', duration: 'slow'}
			]}).tabs('rotate', 5000, false);
		$(this).parent().css({
			backgroundImage: 'url(' + $(this).parent().find("img[id$='preset1']:first").attr('src') + ')',
			backgroundPosition: '4px 60px',
			backgroundRepeat: 'no-repeat'
		});
		
		$(this).bind('tabsshow', function(tabsbar, event, ui) {
			$(this).parent().css({
				backgroundImage: 'url(' + $(ui.panel).find('img#img-' + ui.panel.id + ':first').attr('src') + ')',
				backgroundPosition: '4px 60px',
				backgroundRepeat: 'no-repeat'
			});
		});
	});
	
	
});