$(document).ready(function() {
  var picker = document.createElement("DIV");
  picker.setAttribute("id", "picker");
  document.body.appendChild(picker);
  var f = $.farbtastic('#picker');
  var p = $('#picker');
  var selected;
  $('.colorwell')
    .each(function () { f.linkTo(this); })
    .click(function() {
      if (selected) {
        $(selected).removeClass('colorwell-selected');
      }
      f.linkTo(this);
	  p.css("top", $(this).position().top - 95)
	   .css("left", $(this).position().left + $(this).width() + 10).fadeIn("fast");
      $(selected = this).addClass('colorwell-selected');
    });
});
