$(document).ready(function() {

$("ul.sf-menu").superfish({ 
    animation: {height:'show'},
    delay:     1200,
    autoArrows:  false,
    dropShadows: false
}); 


    //email spam protection - Example Markup: <span class="email">name[at]domain[dot]com</span>
    $('.email').each(function() {
        var $email = $(this);
        var address = "inquiry@auralites.com";
        var address_text = $email.text()
        .replace(/\s*\[at\]\s*/, '@')
         .replace(/\s*\[dot\]\s*/g, '.');
        $email.html('<a href="mailto:' + address + '">'+ address_text +'</a>');
    });



});//end whole thing
