$(document).ready ( function() {
	$('ul#portfolio-list a.folio-item').hover(
		function() {
			$(this).children('span.desc').stop(false,true).fadeIn(200);
		},
		function() {
			$(this).children('span.desc').stop(false,true).fadeOut(200);
		}
	);
	
	$('ul#folio_nav a').hover(
		function() {
			$(this).children('span').stop(false,true).fadeIn(200);
		},
		function() {
			$(this).children('span').stop(false,true).fadeOut(200);
		}
	);
	
	$("div#visuel a[rel='modal']").nyroModal();
	
	$('a[href^=#]').click(function() {
		var $target = $(this.hash);
		
		if ($target.length) {
			$('html,body').animate({scrollTop: $target.offset().top}, 1000);
			return false;
		}
	});
});