$(function(){
	$(".tab dt .title>a:first").addClass("tabActive");
	$(".tab dd .content").not(":first").hide();
	$(".tab dt .title>a").unbind("click").bind("click", function(){
		$(this).siblings("a").removeClass("tabActive").end().addClass("tabActive");
		var index = $(".tab dt .title>a").index( $(this) );
		$(".tab dd .content").eq(index).siblings(".tab dd .content").hide().end().fadeIn("slow");
   });
});
