jQuery(document).ready(function(){
	jQuery('#social ul li a').hover(function(){
	  jQuery(this).children('img')
	  .animate({top: '-6px' }, 200).animate({top: '0px'}, 200)
	  .animate({top: '-4px' }, 200).animate({top: '0px'}, 200)
	  .animate({top: '-2px' }, 200).animate({top: '0px'}, 200);
	});
	
	jQuery('a[href][title]').qtip({
	      content: {
		 text: false // Use each elements title attribute
	      },
	      style: { 
		      width: 200,
		      padding: 5,
		      background: '#14556B',
		      color: 'white',
		      textAlign: 'center',
		      border: {
			 width: 3,
			 radius: 5,
			 color: '#102536'
		      },
		      tip: 'topLeft'
		   },
		position: {
		      corner: {
			 target: 'bottomRight',
			 tooltip: 'topLeft'
		      }
		   }


	   });


});

