jQuery(document).ready(function($){
$('#tab-title span').click(function(){
    $(this).addClass("selected").siblings().removeClass();
    $("#tab-content > ul").eq($('#tab-title span').index(this)).fadeIn('slow').siblings().hide();
});
});
