// TabControl Hauptdatei
// Robert Blutner, 08.08.2010

function TabControl(tabControlId)
{
	var instance = this;
	
	this.element = $("#" + tabControlId);
	this.header = this.element.find(".header");
	
	this.header.find("td").not(".active").hover(
		function() {
			$(this).css("textDecoration", "underline");
		},
		function() {
			$(this).css("textDecoration", "none");
		}
	);
}
