$(document).ready(function() {
    $('#cartForm').qtip({
				content: '<div class="popup">合計<span style="font-weight:bold;color:red;">5部</span>以上のご注文は<strong>1割引</strong>で更にお得です！<br />他の商品とあわせても割引可能です！</div>',
        position: {
            corner: {
							target: 'topMiddle',
							tooltip: 'bottomMiddle'
            },
            adjust: {y: -5}
        },
				style: {
					width:300,
      		padding: 0, 
      		margin: 0, 
					border: {
		         width: 1,
		         radius: 1,
		         color: '#F90'
		      },
					tip: { 
					         corner: 'bottomMiddle', 
					         color: '#F90',
					         size: {
					            x: 15, 
					            y : 8 
					         }
						}
				}
    });
});