var test = "test";
$(document).ready(function(){
	$.nyroModalSettings({
		
        processHandler: function(settings) {
			
            var scaleRatio = 1;
            var from = settings.from;
            
			if (from && from.href && from.href.indexOf('charteCouleurs') > 0) {
			$.nyroModalSettings({
				width: 650,
				height: 650,
                url: from.href 
            });
			} else if (from && from.href && from.href.indexOf('animation') > 0) {
			$.nyroModalSettings({
				width: 230,
				height: 190,
                url: from.href 
            });
			}
			else{
			$.nyroModalSettings({
                url: from.href 
            });
			}
        }
    })
});
