$(document).ready(function() {            
			$('#happyshare span[title]').qtip({				
				style: {
					classes: 'ui-tooltip-dark ui-tooltip-shadow ui-tooltip-rounded'
					//width: 90
				},
				position: {
					my: 'right center',
					at: 'left center',
					adjust: {x: 0, y: -12}
				},
				show: {
					delay: 0,
					effect: function(offset) {
						$(this).slideDown(300);
					}
				}
			});
			$('#homelist .onpage[title]').qtip({				
				style: {
					classes: 'ui-tooltip-dark ui-tooltip-shadow ui-tooltip-rounded'
					//width: 90
				},
				position: {
					my: 'bottom center',
					at: 'top center',
					adjust: {x: 0, y: 0}
				},
				show: {
					delay: 0,
					effect: function(offset) {
						$(this).slideDown(300);
					}
				}
			});
			$('#homelist .offpage[title]').qtip({				
				style: {
					classes: 'ui-tooltip-dark ui-tooltip-shadow ui-tooltip-rounded'
					//width: 90
				},
				position: {
					my: 'bottom center',
					at: 'top center',
					adjust: {x: 0, y: 0}
				},
				show: {
					delay: 0,
					effect: function(offset) {
						$(this).slideDown(300);
					}
				}
			});
        });
