$(document).ready(function() {
  
  $("img[rel]").css("cursor", "pointer");  
  $("img[rel]").overlay({effect: 'apple'});
  $("#table-a tr:odd").addClass("alt");	
  
  if ($("#smartermail_form").length) {
    $("form#smartermail_form").submit(function() {
      
      if (!($("input#lm_tos:checked").length)) {
        alert("In order to submit your order, you must agree to our Terms of Use.");
        return false;
      }    
      
    });
  }
  
});
