
// Cycle de teksten
$.fn.cycle.defaults.timeout = 6000;
$(function() {
// Cicle JQuery
    $('#highlights').before('<div class="highlight">').cycle({
       fx:        'fade',
       cssBefore: { opacity: 1 },
       animOut:   { opacity: 0 },
       speed:  '1000',
       timeout: 4500
    });
});

$(document).ready(function(){
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
});
