function(){
        $("#btn-popular").click(function() {
                $(".widearea").animate({
                        marginLeft: "0px"
                }, 500);
        });
        $("#btn-latest").click(function() {
                $(".widearea").animate({
                        marginLeft: "-240px"
                }, 500);
        });
        $("#btn-categories").click(function() {
                $(".widearea").animate({
                        marginLeft: "-480px"
                }, 500);
        });
});
