﻿
$(function(){
	// Twitter
	$('#twitter').hover(function(){
   		$(this).stop().animate({left:'0px'},{queue:false,duration:200});
	},function(){
   		$(this).stop().animate({left:'-153px'},{queue:false,duration:200});
	});

});

