function initTabs()
{
	var p1 = new Image();
	p1.src = "images/loading.gif";
	
	var tabs = $(".tabset a");
	$(tabs).each(function(i, el)
	{
		if($(el).hasClass("active"))
		{
			getHttpRequest(el.rel, null, null);
		}
		$(el).click(function()
		{
			if(this.rel)
			{
				var tab = document.getElementById("tabs-holder");
				tab.innerHTML = "";
				$(tabs).removeClass("active");
				$(this).addClass("active");
				getHttpRequest(this.rel, null, null);
			}
			return false;
		});
	});
}

if (window.addEventListener)
	window.addEventListener("load", initTabs, false);
else if (window.attachEvent && !window.opera)
	window.attachEvent("onload", initTabs);
