$(document).ready(function(){

// Add more header images to that array if you want to.
var headerImgs = new Array(
'<img src="images/header_turbo_03_lrg.jpg" alt="Turboanalisis, Inc 2007" />',
'<img src="images/header_turbo_04_lrg.jpg" alt="Turboanalisis, Inc 2007" />',
'<img src="images/header_turbo_05_lrg.jpg" alt="Turboanalisis, Inc 2007"/>',
'<img src="images/header_turbo_06_lrg.jpg" alt="Turboanalisis, Inc 2007"/>'
);

// Remove the picture out of the html
$('.fade').empty();

// Add the pictures from the Array above to the DOM
for (i=0;i<headerImgs.length;i++)
{
    $('.fade').append(headerImgs[i]);
}

// Animate the pictures
$('.fade').innerfade({
    speed: 1700,
    timeout: 4000,
    type: 'sequence',
    containerheight: '230px'
    });
});

function eLink(mail,domain) {
    document.write('(<a href="mailto:' + mail + '@' + domain + '">' + mail + '@' + domain + '</a>) ');
}
