$("#swatches li").click(function() {
	
	var swatch = $(this);
	
	swatch.addClass('selected');
	swatch.siblings().removeClass('selected');
	
	var select = swatch.attr('data-attribute-id');
	var color = swatch.attr('data-color-name');
	var $select = $('#' + select);
	
    // $select.find('option').each(function( i ){
    //  
    //  var option = $(this);
    //  
    //  if( option.val() == color ) {
    //      option.attr('selected', true)
    //  } else {
    //      option.attr('selected', false);
    //  }
    // });
	
	$select.val( color ).change();
	
});

$('#swatches li').eq(0).trigger('click');
