//DOCUMENT
$(document).ready(function() {

	// RESEAUX SOCIAUX
	$("ul#reseauxsociaux li").hover(function() { //On hover...
		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'

		//Set a background image(thumbOver) on the <a> tag - Set position to bottom
		$(this).find("a").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});

		//Animate the image to 0 opacity (fade it out)
		$(this).find("span.rolling").stop().fadeTo('normal', 0 , function() {
			$(this).hide() //Hide the image after fade
		});
	} , function() { //on hover out...
			//Fade the image to full opacity 
			$(this).find("span.rolling").stop().fadeTo('normal', 1).show();
	});
	
	// SITES
	$("ul#sites li").hover(function() { //On hover...
		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'

		//Set a background image(thumbOver) on the <a> tag - Set position to bottom
		$(this).find("a").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});

		//Animate the image to 0 opacity (fade it out)
		$(this).find("span.roll").stop().fadeTo('normal', 0 , function() {
			$(this).hide() //Hide the image after fade
		});
	} , function() { //on hover out...
			//Fade the image to full opacity 
			$(this).find("span.roll").stop().fadeTo('normal', 1).show();
	});

	// CUFON
	Cufon.replace('h3#introtitre', { fontFamily: 'Nilland',textShadow: '#fff 1px 1px, #fff 1px 1px' });
	Cufon.replace('p#intro', { fontFamily: 'Nilland' });
	Cufon.replace('p#contact', { fontFamily: 'Nilland' });
	Cufon.replace('a.dispo', { fontFamily: 'Nilland', textShadow: '#7c7d7c 1px 1px, #7c7d7c 1px 1px' });
	Cufon.replace('a.indispo', { fontFamily: 'Nilland', textShadow: '#7c7d7c 1px 1px, #7c7d7c 1px 1px' });
	Cufon.replace('#reseauxsociauxtxt', { fontFamily: 'Nilland', textShadow: '#fff 1px 1px, #fff 1px 1px' });
	Cufon.replace('#portfoliotxt', { fontFamily: 'Nilland', textShadow: '#fff 1px 1px, #fff 1px 1px' });
	Cufon.replace('#nl2brlink', { fontFamily: 'Nilland', textShadow: '#7c7d7c 1px 1px, #7c7d7c 1px 1px' });
	Cufon.replace('#footer', { fontFamily: 'Nilland'});

});
