$(document).ready(function(){
	$.fn.qtip.styles.mystyle = { // Last part is the name of the style
		width: 165,
		background: '#DEDEDE',
		color: 'Black',
		textAlign: 'left',
		
		border: {
			width: 0,
			radius: 5,
			color:'#DEDEDE'
		},
		tip: {
			corner:'leftMiddle',
			size: {x:15,y:10}
		}
		
	};
	$(".tooltip").each(function(){
		var $e = $(this);
		$e.qtip({
			content: $e.next().html(),
			style:{name:'mystyle'},
			position: {
				corner: {
					target: 'rightMiddle',
					tooltip: 'leftMiddle'
				}
			}
		});
	});
	
	$(".options").each(function(){
		var $e = $(this);
		$e.qtip({
			content: $e.next().html(),
			style:{name:'mystyle'},
			position: {
				corner: {
					target: 'rightMiddle',
					tooltip: 'leftMiddle'
				}
			}
		});
	});
});
