/*
 * jQuery JavaScript Functions
 * 
 * Common function for WHPacific.com
 */
$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});


$(document).ready(function() {
    $('span.whpmail').each(function() {
        var addr = ($(this).text().toLowerCase());
        $(this).after('<a href="mailto:' + addr + '@whpacific.com" title="Send an email">' + addr + '@whpacific.com</a>');
        $(this).remove();
    });
}
);
