$(document).ready(function(){
	
	$('.tooltip').each(function(){
		var content = '<img src="'+$(this).attr('rel')+'" />';
		
		$(this).qtip({
			content: content,
		   	show: 'mouseover',
		   	hide: 'mouseout',
		   	position: {
				corner: {
					target: 'leftMiddle',
					tooltip: 'bottomRight'
				}
			},
			style:{
				width:112,
				padding:5,
				tip:{
					size:{
						x: -50,
						y : 30
						
					}
				}
			}
		
			
		});
	});
});
