$(document).ready(function(){

  $('.product-features').hide();
  
  setup_features();
  stop_propagation();
  
});


function setup_features(){
  $('.product-title-desc').toggle(
    function() {
      $('.product-features').hide();
//      $('.product-title-desc').css("background-image", "url(/images/up.jpg)");
      $(this).find('.product-features').show();
//      $(this).css("background-image", "url(/images/down.jpg)");
      return false;
    },
      
    function() {
      $(this).find('.product-features').hide();
//      $(this).css("background-image", "url(/images/up.jpg)");     
      return false;
    }
  );

}

function stop_propagation(){
  $('.more-info').click(function(e){  
    e.stopPropagation();  
  });
}