
config.type = 'men';


BEYES.setup = function() {
	new BEYES.Viewer().show();
	BEYES.QuickCart.setup();
	$('.stock').each(function() {
		var dl = $('dl', this);
		(dl.length == 1) ? dl.parent().addClass('single') : dl.tall();
	});

	var container = $('.unitList01');

	var related = new BEYES.UnitList({
		container: container,
		api      : '/api/product/getRelatedItems',
		queries  : { id: stash.id },
		column   : 3
	});
	related.complete = function() {
		if (!container.html())
			$('#prdRelated h2').remove();
	};
	related.show();
};
