	$(document).ready(function()
	{
		var colors = new Array();
		
		//Array med bakgrundsfärger till tabbarna, lägg till så många som behövs
		colors[0] = '#000000';
		colors[1] = '#a22225';
		colors[2] = '#859e6a';
		colors[3] = '#f5941e';
		colors[4] = '#5d9fb9';
		colors[5] = '#807370';
		colors[6] = '#a3c7d9';
		colors[7] = '#bbc66f';

		//Sätter rätt färg på den aktiva tabben
		$("#dmenu li.current a").css('background-color', colors[$("#dmenu > li").index($("#dmenu li.current"))]);
		
		$("#dmenu > li:not(.current) a").mouseover(function()
		{
			//Faddar ut alla tabbar så att det alldrig ska hänga sig
			$("#dmenu > li:not(.current) a").animate({backgroundColor: "#fff"}, 1000);
			
			var index = $("#dmenu > li").index($(this).closest('li'));
			
			$(this).stop(true, false);
      $(this).animate({backgroundColor: colors[index]}, 1000);
		});
		
		$("#dmenu li:not(.current) a").mouseout(function()
		{
			$(this).stop(true, false);
			$(this).animate({backgroundColor: "#fff"}, 1000);
		});
	});
