$(function() {
  $('.products').each(function() {
    var maxH = $(this).height();
    $(this).find('li').height(maxH - 24);
  });
  
  $('#product-img a').click(function() {
    var imgURL = $(this).attr('class');    
    $('#product-img-main').attr('src', imgURL);    
    return false;
  });
  
  $('#product p').not('.purchase').each(function(){
      var lnk = $(this).html().replace(/([\w-]+@([\w-]+\.)+[\w-]+)/, '<a href="mailto:$1";>$1</a>');
      $(this).html(lnk);
      var lnk = $(this).html().replace("http://www.ourdivinemedicine.com", '<a href="http://www.ourdivinemedicine.com" target="_blank">http://www.ourdivinemedicine.com</a>');
      $(this).html(lnk);      
  });
});
