function addLinkTips(){

	$('.produkt-nazwa').qtip({
				position: {
				     corner: {
				     		target: 'topMiddle',
				    		tooltip: 'bottomMiddle'
				     }
				},
				   show: 'mouseover',
				   hide: 'mouseout',
				   style:{
				   		background:'#424f6e',
				   		padding:2,
				   		color:'#fff',
						border:{
							width:0, radius:5, color:'#424f6e'
						}
				   		
			   		}
			})
			
			$('.xclose').qtip({
						position: {
						     corner: {
						     		target: 'topMiddle',
						    		tooltip: 'bottomRight'
						     }
						},
						   show: 'mouseover',
						   hide: 'mouseout',
						   style:{
						   		background:'#424f6e',
						   		padding:2,
						   		color:'#fff',
								border:{
									width:0, radius:5, color:'#424f6e'
								}

					   		}
					})
	
}

