$(function(){
$('.a_blog').click(function() { 
    var $ths = $(this);
    if($ths.hasClass('b_blog'))
        $ths.removeClass('b_blog');
    else
        $ths.addClass('b_blog');
}).mouseleave(function() { 
    $(this).removeClass('b_blog');
});
        });
		
$(function(){
$('.a_twitter').click(function() { 
    var $ths = $(this);
    if($ths.hasClass('b_twitter'))
        $ths.removeClass('b_twitter');
    else
        $ths.addClass('b_twitter');
}).mouseleave(function() { 
    $(this).removeClass('b_twitter');
});
        });	

$(function(){
$('.a_projects').click(function() { 
    var $ths = $(this);
    if($ths.hasClass('b_projects'))
        $ths.removeClass('b_projects');
    else
        $ths.addClass('b_projects');
}).mouseleave(function() { 
    $(this).removeClass('b_projects');
});
        });			