document.write('<link rel="stylesheet" type="text/css" href="/_qtip/qtip.css" />');
document.write('<script type="text/javascript" src="/_qtip/qtip-core.js"></script>');



$(function(){ 
			   
		$('.qtipLeft[title], #addthis a, #fontscale a').qtip({
               position: {
                  corner: {
                     tooltip: 'bottomRight', // Use the corner...
                     target: 'topLeft' // ...and opposite corner
                  },
				  adjust: {
                  	resize: true,
               		scroll: true
			      }
               },
               style: {
                  border: {
                     width: 5,
                     radius: 5
                  },
				  width: { max: 700 },
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'cream' // Style it according to the preset 'cream' style
               }
        });
		
		$('.qtipRight[title]').qtip({
               position: {
                  corner: {
                     tooltip: 'bottomLeft', // Use the corner...
                     target: 'topRight' // ...and opposite corner
                  },
				  adjust: {
                  	resize: true,
               		scroll: true
			      }
               },
               style: {
                  border: {
                     width: 5,
                     radius: 5
                  },
				  width: { max: 700 },
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'cream' // Style it according to the preset 'cream' style
               }
        });

});

