function bindShirtSelector(format) {
	$('#add_to_cart_'+format).qtip({
		show: { solo: true, when: { event: 'mouseover' } },
		hide: { when: 'mouseout', fixed: true, delay: 400 },
		content: {
			text: $('#sizes_'+format)
		},
		position: {
			corner: {
				target: 'bottomRight',
				tooltip: 'topRight'
			}
		},
		style: { 
			'overflow': 'auto',
			'padding': '0px',
			'margin': '0px',
			'background-color': '#afabac',
			width: {
				min: '272em',
				max: '272em'
			},
			height: '145px',
			border: {
				width: '4px',
				color: '#5d5d5d'
			}
		}
	});  
}
