var ContentFilter = {
    content_types : ['all', 'article','link'],
    init : function() {
        $(ContentFilter.content_types).each(function(i,v){
            $('#'+v+'-filter-button').click(function(){
                 ContentFilter.show_type(v);
            });
        });   
    },
    show_type : function(content_type)
    {
        $(ContentFilter.content_types).each(function(i, v){
            if(content_type != 'all') {
                if(v != content_type) {
                    $('#'+v+'-filter-button').css({'font-weight' : 'normal'});
                    $('.blurt_'+v).slideUp();
                } else {
                    $('#'+v+'-filter-button').css({'font-weight' : 'bold'});
                    $('.blurt_'+v).slideDown();
                }
            } else {
                $('#all-filter-button').css({'font-weight' : 'bold'});
                $('#'+v+'-filter-button').css({'font-weight' : 'normal'});
                $('.blurt_'+v).slideDown();
            }
        });

    }
    
}