function changeTableTab(b)
{
var bb = b-1;
$(".tabs").css("display", "none");
$("#Tab"+b).css("display", "block");
$(".tadTable a").removeClass('selected');
$(".tabTable a:eq("+bb+")").addClass('selected');


if (b==1)
{
$(".tabTable").css("background", "url(https://lib.store.yahoo.net/lib/snaz75/ey-tabs.png) no-repeat scroll 0 0");
}

if (b==2)
{
$(".tabTable").css("background", "url(https://lib.store.yahoo.net/lib/snaz75/ey-tabs.png) no-repeat scroll 0 -26px");
}

if (b==3)
{
$(".tabTable").css("background", "url(https://lib.store.yahoo.net/lib/snaz75/ey-tabs.png) no-repeat scroll 0 -52px");
}

if (b==4)
{
$(".tabTable").css("background", "url(https://lib.store.yahoo.net/lib/snaz75/ey-tabs.png) no-repeat scroll 0 -78px");
}

if (b==5)
{
$(".tabTable").css("background", "url(https://lib.store.yahoo.net/lib/snaz75/ey-tabs.png) no-repeat scroll 0 -104px");
}

if (b==6)
{
$(".tabTable").css("background", "url(https://lib.store.yahoo.net/lib/snaz75/ey-tabs.png) no-repeat scroll 0 -130px");
}
}


