function bind_cart_events(){
  $('#header .cart').hover(
    function(){
      $(this).addClass("over");
    },
    function(){
      $(this).removeClass("over");
    }
  );
}
function bind_gui_selects(){
  $('.gui.select select').change(function(){
    value = $(this).find(':selected').text();
    $(this).parent().find('.middle').text(value);
  });
  $('.gui.select select').change();
}

function desaturate(img) {
  var img2 = Pixastic.process(img, "desaturate");
  img2.onmouseout = function() {
  Pixastic.revert(this);
  }
}


$(document).ready(function(){
   
  bind_cart_events();
  bind_gui_selects();
  
});

