﻿/* 
 * main.js
 * js функции фронтэнда
 */

$(document).ready(function(){
     $('#slide').cycle({
        fx:    'fade',
        timeout:  5000
     });

   $(".cd-products table tr:even").addClass("even");

    $('a.email').nospam({
      replaceText: true,    // BOOLEAN, optional default false. If set to true, replaces matched elements' text with the e-mail address
      filterLevel: 'normal' // STRING, optional accepts 'low' or 'normal', default 'normal'.
                            // low: email/domain/tld
                            // normal: dlt/niamod/liame (email/domain/tld reversed)
   });    
});
 
