// PROTECT EMAIL FUNCTION
function emailProtect(i) {
    var content = jQuery(this).text().replace(' AT ', '@').replace(' POINT ', '.');
    jQuery(this).replaceWith($('<a href="mailto:'+content+'">'+content+'<\/a>'));
}



// HOME PAGE CARROUSEL
homeCarrousel = function() {
	if ( jQuery("#geria_carrousel").length ) {
		jQuery('#geria_carrousel').cycle({
			pager: '#carousels_nav',
			fx: 'fade',
			speed: 'slow',
			timeout: 4000,
			pagerEvent: 'click',
			pause: 1,
			prev: '.flecheG',
			next: '.flecheD',
			pagerAnchorBuilder: function(idx, slide) {
				return '#carousels_nav li:eq(' + (idx) + ') a';
			}
		});
	}
};

jQuery(document).ready(function() {
    homeCarrousel();
    jQuery(".emailProtect").each(emailProtect);

});
            
