/**
 * @author mcaillet émafbroadcast
 * homepage jquery functions
 */
$(document).ready(function(){
	/* 	effects speed 		*/
	var fadeInSpeed=295;
	var fadeOutSpeed=265;
	
	/* 	contact h1 rollOver  */
	$('h1').hover(
		function(){
			$('#contact').fadeIn(fadeInSpeed);
		},function(){
			$('#contact').fadeOut(fadeOutSpeed);
		}
	);
	
	/*  links rollOvers		*/
	$('#links a').hover(
				 function(){
				 	/* get id of current rolled over item & add a _ to show the box */
				 	$('#'+$(this).attr('id')+'_').fadeIn(fadeInSpeed);
				 },
				 function(){
				 	$('#'+$(this).attr('id')+'_').fadeOut(fadeOutSpeed);
				 }
	);
	
	
	/* add email links */
	var m = 'mai_5.a7tlto:con_5.a7tta_5.a7tct@un_5.a7tmond_5.a7temei_5.a7tlleur.co_5.a7tm?subject=info Un Monde Meilleur"'.replace(/_5.a7t/g,'')
	for (var i = 1; i <= 4; i++) {
		$('#links').append('<a href="' + m + '" id="contact'+i+'"><strong>un monde meilleur</strong><span> - contact</span></a>');
	}
	
	/* remove focus border */
	$('#links a').focus(function(){$(this).blur();});
	
	/* add a target attribute for some specific links */
	$('#global address a').attr("target","_blank");
	
	
});
