var active_tab = 0;
$(document).ready(function(){
	$("#tabs div.tab-header").mouseover(function () {
		var ind = $("#tabs div.tab-header").index(this);
		$("#tabs div.tab-content").eq(active_tab).hide();
		$("#tabs div.tab-header").eq(active_tab).removeClass("active");
		active_tab = ind;
		$("#tabs div.tab-content").eq(ind).show();
		$(this).addClass("active");
   	});

	$("#tabs div.tab-header").mouseout(function () {
		var ind = $("#tabs div.tab-header").index(this);
		$("#tabs div.tab-content").eq(ind).hide();
		$(this).removeClass("active");
		active_tab = ind;
		$("#tabs div.tab-content").eq(active_tab).show();
		$("#tabs div.tab-header").eq(active_tab).addClass("active");
   	});
});

