//no conflict jquery
jQuery.noConflict();
(function($) { 
//jquery stuff 
$(document).ready(function() {

//spam proof emails:
    $('a.email').each(function(i) {
        var text = $(this).text();
        var address = text.replace(" at ", "@");
        $(this).attr('href', 'mailto:' + address);
            $(this).text(address);
        });


    });
//no conflict jquery
})(jQuery);
