/* **************************************************
//
// 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() {

    /*
    * Email Functions
    */

    // Carry out the actions on the elements
    return this.each(function() {
    	
		var address;
		address = $(this).find("span.address").html().replace(" at ", "@");
        $(this).html('<a href="mailto:' + address + '">' + address + '</a>');

    });

};
