$(document).ready(function(){

//When mouse rolls over
$("#twit_contain2, #blog_contain").mouseover(function(){
$(this).stop().animate({width:'213px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});

//When mouse is removed
$("#twit_contain2, #blog_contain").mouseout(function(){
$(this).stop().animate({width:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});

});
