// Shuffle function from: http://james.padolsey.com/javascript/shuffling-the-dom/
$(function(){
	       
   $(".discounted-item")
        .css("opacity","0.7")
       .hover(function(){
           $(this).css("opacity","1");
       }, function() {
           $(this).css("opacity","0.7");
       })
       /*.click(function(){
           location.href = $(this).attr("rel"); 
           return false;
       }) 
       
       UNCOMMENT THIS TO MAKE THE BLOCKS CLICKABLE TO THEIR REL ATTRIBUTES
       
       */;
       
   
});