$(document).ready(function(){
	$(".socialbutton").hover(function(){
    $(this).animate({opacity: '0.5'}, 150);
    });
});

$(document).ready(function(){
	$(".socialbutton").mouseout(function(){
    $(".socialbutton").animate({opacity: '1.0'}, 100);
    });
});
