$('.color').each(function() {
	var s = $(this).find('span:eq(0)');
	$(this).css('cursor', 'pointer');
	var c = s.attr('class') !== '' ? s.attr('class'):'#'+s.attr('id');
	// if (c==='white'||/^[f]{3,6}$/i.exec(c))
	// 	$(this).css('border-color', 'rgba(0,0,0,0.7)');
	$(this).css('background-color', c);
	$(this).click(function() {
		$('body').css('background-color', $(this).css('background-color'));
	});
})
