$(document).ready(function(){
   $('.menu_side img[title]').qtip({
      position: {
         corner: {
            target: 'bottomMiddle',
            tooltip: 'center'
         }
      },
	  show: { 
	  delay: 0
	  },
	  hide: {
	  delay: 0 
	  },
      style: {
         name: 'light',
         padding: '7px 13px',
         width: {
            max: 330,
            min: 0
         },
         tip: true
      }
   });
   
	$("#widget_facebook").hover(function() {
			$("#widget_facebook").stop(true, false).animate({ right: "-1" }, 500);
		},function(){
			$("#widget_facebook").stop(true, false).animate({ right: "-307" }, 500);
		},500);
});
