$(document).ready(function() {
	$(".tabcontent").hide();
	$("dl.tabs dd:first").addClass("act").show();
	$(".tabcontent:first").show();
	
	$("dl.tabs dd").click(function() {
		$("dl.tabs dd").removeClass("act");
		$("dl.tabs dd").addClass("no");
		$(this).addClass("act");
		
		var zIndexNumber = 1000;
		$('dl.tabs dd').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
		
		$(this).css('zIndex', 2000);
		$(".tabcontent").hide(); 
		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});

});


$(function() {
	var zIndexNumber = 1000;
	$('dl.tabs dd').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
