$('ul.swatches li a').click(function(e) {
	
	var color = $(this).attr('data-color');
	var select = $('#' + $(this).closest('ul').attr('data-for'));
	
	$.each( select.find('option'), function() {
		$(this).attr('selected', $(this).val() == color ? 'selected' : false);
	});

	e.preventDefault();
		
});