function trendShow(id) {
    $("#trendbox"+id).css("display","block");
    $(".related a:first-child").addClass("sstep");
    $(".related a").click( function() {
        $(this).siblings().removeClass("sstep");
        $(this).addClass("sstep");
        $(this).parent().prev().find("div").css("display","none");
        var sid = $(this).attr("rel");
        $(this).parent().prev().find(".step"+sid).fadeIn();  
    });
}
function showTrend(id) {
    $("#trendbox"+id).siblings().css("display","none");
    $("#trendbox"+id).fadeIn();
}