$(document).ready(
	function(){
	
	// Nyromodal
		$('.popup').nyroModal({width: 830, height: 590});
		
		if ($("#b a img.zoom-photo").length > 0) {
			$("#b a img.zoom-photo").each(function() {
				var myParent = $(this).parent("a");
	
				$(this).removeAttr('class');
				myParent.attr("class", "nyroModal");
	
				if (($(this).attr("alt")).length > 0) 
					myParent.attr("title", $(this).attr("alt"));

				myParent.nyroModal();
			});
		}
	
	
	// Nouveautés HomePage
	$("#project-gallery li img").attr("class","thumb");
	
});