function startup()
{
    $(document).ready(function() {
        setTimeout("$('#logo').fadeIn('slow')", 1500);
    });
}

function mailTo()
{
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var address = 'info';
	var domain = 'webin';
	var ext = 'hu'; 
	document.write('<a href="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);  
	document.write('">'); 
	document.write('e-mail</a>');
}