$(document).ready(function(){
	var x=0;
	$('#widget').mouseover(function(){
		 $('#widget').animate({
    		right: x
  		}, 100, function() {
    		if(x==0) x = -300;
			else x = 0;
 		});
	})
	$('#widget').mouseout(function(){
		 $('#widget').animate({
    		right: x
  		}, 100, function() {
    		if(x==-300) x = 0;
			else x = -300;
 		});
	})
});
