var RightTabs =
{
	start: function()
	{
		RightTabs.active = 1;
		
		if($.cookie('righttab') != null)
		{
			RightTabs.active = $.cookie('righttab');
		}

		$('#rightTabBottom'+ RightTabs.active).removeClass('rightTabBottom'+ RightTabs.active);
		$('#rightTabBottom'+ RightTabs.active).addClass('rightTabBottom'+ RightTabs.active + 'n');
		
		$('#rightTab'+ RightTabs.active).show();
		
		$('#rightTabButton'+ 1).bind('click', function() { RightTabs.show(1); });
		$('#rightTabButton'+ 2).bind('click', function() { RightTabs.show(2); });		
		$('#rightTabButton'+ 3).bind('click', function() { RightTabs.show(3); });

	},
	show: function(n)
	{
		if(RightTabs.active == n)
		{
			if(n == 1)
			{
				self.location = '/galerie/';
			}
			else if(n == 2)
			{
				self.location = '/forum/';
			}
			else if(n == 3)
			{
				self.location = '/uzytkownicy/';
			}
		}
		this.hide();

		$('#rightTab'+ n).show();

		$('#rightTabBottom'+ n).removeClass('rightTabBottom'+ n);
		$('#rightTabBottom'+ n).addClass('rightTabBottom'+ n + 'n');

		RightTabs.active = n;
		$.cookie('righttab', RightTabs.active);
	},
	hide: function()
	{
		$('#rightTab'+ RightTabs.active).hide();

		$('#rightTabBottom'+ RightTabs.active).removeClass('rightTabBottom'+ RightTabs.active  + 'n');
		$('#rightTabBottom'+ RightTabs.active).addClass('rightTabBottom'+ RightTabs.active);
	}
}
