$(document).ready(function(){
	$.fn.qtip.styles.mystyle = {
							  width: '100%',
							  padding: 3,
							  background: '#65c3ec',
							  color: '#fefffd',
							  textAlign: 'center',
							  border: { 
										width: 7,
										radius: 5,
										color: '#65c3ec'
									  },
							  tip: true,
					          name: 'light' 		
	};
	
	var item = $(' a[title]'); 
			item.qtip({
					 position: {
						corner: {
							target: 'bottomMiddle',
							tooltip: 'topMiddle'
							}
						},

					style  : "mystyle",
						});
						
	var ele = $('span[title]'); 
			ele.qtip({
					 position: {
						corner: {
							target: 'topRight',
							tooltip: 'bottomLeft'
							}
						},

					style  : "mystyle",
						});
					})
						
				
	
		



