jQuery(document).ready(function() {
	// handle size chooser:
	// set cursor to pointer over available sizes:
	jQuery('.green').each(function(i) {
		jQuery(this).css({cursor: "pointer"});
	});
	// set select option to clicked size:
	jQuery('.green').click(function() {
		jQuery('.'+jQuery(this).parent().attr('rel')).val(jQuery(this).attr('rel'));
	});
});
