/* Einfalt tab-plugin */
jQuery.fn.SimpleTabs = function ()
{
	return this.each(function ()
	{
		var tabCtrl = $(this);

		tabCtrl.find('.sheet:eq(0)').show();
		tabCtrl.find('ul.tabs li:eq(0)').addClass('active');

		tabCtrl.find('ul.tabs li').each(function (index)
		{
			$(this).click(function ()
			{
				tabCtrl.find('.sheet').hide();
				tabCtrl.find('.sheet:eq(' + index + ')').show();

				tabCtrl.find('ul.tabs li').removeClass('active');
				$(this).addClass('active');
				
				return false;
            		});
        		});
	});
};
