// JavaScript Document
$(document).ready(function(){
$(".actresscontent").hide();
$(".actress_first").addClass("tabactive");
$(".actresscontent:first").show();


$(".actress").click(function(){
$(".actress_first").removeClass("tabactive");
$(".actress").removeClass("tabactive_1");
$(".actress_last").removeClass("tabactive_2");
$(this).addClass("tabactive_1");
$(".actresscontent").hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});

$(".actress_first").click(function(){
$(".actress").removeClass("tabactive_1");
$(".actress_last").removeClass("tabactive_2");
$(this).addClass("tabactive");
$(".actresscontent").hide();
var activeTab_one = $(this).find("a").attr("href");
$(activeTab_one).fadeIn();
return false;
});

$(".actress_last").click(function(){
$(".actress_first").removeClass("tabactive");
$(".tabactive_1").removeClass("tabactive_1");
$(this).addClass("tabactive_2");
$(".actresscontent").hide();
var activeTab_one = $(this).find("a").attr("href");
$(activeTab_one).fadeIn();
return false;
});
	
});
