/* **************************************************
//
// Email Translation Script
// Turns a written email address into a link (to help avoid spam bots).
//
// Created : 9th June 2007
//
// Copyright Simon Corless sico.co.uk
// Use and alter as you please, if you make any good changes let me know!
//
************************************************** */

// Extend jquery into our function
jQuery.fn.email = function(options) {

    var settings = {

    };

    // Overwrite the settings with the options sent to the script
    if(options) {
        $.extend(settings, options);
    };

    /*
    * Global Variables
    */

    /*
    * Email Functions
    */

    // Carry out the actions on the elements
    return this.each(function() {

        $(this).html('<a href="mailto:' + settings.prefix + '@' + settings.suffix + '">' + settings.prefix + '@' + settings.suffix + '</a>');

    });

};

