
	var rc_fadeImages=[];

	function rc_imgFade(id) {
	
		rc_fadeImages[rc_fadeImages.length]=id;

		if (rc_fadeImages.length==1) setTimeout("rc_imgCFades()", 5);
	}
	
	function rc_imgCFades() {
		
		var st=[thisStyle("content","filter"), thisStyle("content","opacity")];
  
		if (st[0]=="alpha(opacity=100)" || st[1]=="1") {

            for (var a=0; a<rc_fadeImages.length; a++) {
            	fade(rc_fadeImages[a], 'in', 100, 5);
 			}

		} else {

			setTimeout("rc_imgCFades()", 5);
			
		}
	}

