<!--

/* Notes : 
	attribut "selector"
		id de l'element
	attribut "wich"
		all will round all corners 
		top will round top corners 
		bottom will round bottom corners 
		tl will round top-left corner 
		tr will round top-right corner 
		bl will round bottom-left corner 
		br will round bottom-right corner 
	attribut "bk"
		outer color, values hexadecimal ou "transparent"
	attribut "color"
		inner color, values hexadecimal ou "transparent"
	attribut "opt"
		options : smooth : outer et inner colors sont nécessaire
				  border : followed by a color in hex code with # symbol, in three or six digits
				  small
*/

	window.onload=function(){
			if(!roundedCheck())
			   return;
			/* Construire les tops & cadres des encarts */
			
			/* cadres topTitre  */
			rounded("div.cdr-rubTitre","top","#fff","#01f","smooth");
			rounded("div.cdr-rub2Titre","top","#fff","#f70","smooth");
			
			/* cadres centre  */
			rounded("div.cdr-top","tr","#fff","#fff","smooth border #01f");
			rounded("div.cdr-bottom","bottom","#fff","#fff","smooth border #01f");
			
			/* cadres couleur différente */
			rounded("div.cdr-T1","tr","#fff","#ecf5ff","smooth border #ecf5ff");
			rounded("div.cdr-B1","bottom","#fff","#ecf5ff","smooth border #ecf5ff");
			rounded("div.cdr-T2","tr","#fff","#ffefdf","smooth border #ffefdf");
			rounded("div.cdr-B2","bottom","#fff","#ffefdf","smooth border #ffefdf");
			rounded("div.cdr-T3","tr","#fff","#fff","small border #f70");
			rounded("div.cdr-B3","bottom","#fff","#fff","smooth border #f70");
			rounded("div.cdr-T4","top","#fff","#d0e9fd","smooth");
			rounded("div.cdr-B4","bottom","#fff","#d0e9fd","smooth");
			
			
			/* blocs centre */
			rounded("div.cdr-zoneTitre","top","#fff","#f70","smooth border #f70");
			rounded("div.cdr-zone2Titre","top","#fff","#01f","smooth border #01f");
			rounded("div#btmSearch","bottom","#fff","#ffdbb7","smooth");
			rounded("div#btmThemes","bottom","#fff","#d0e9fd","smooth");
			rounded("div#btmThemes2","bottom","#fff","#ffdbb7","smooth");
			rounded("div#btmPromos","bottom","#fff","#fff","smooth border #f70");
			rounded("div#blocDates2","br","#fff","#fff5e9","smooth");
			rounded("div#multimedias","bottom","#fff","#ecf5ff","smooth border #01f");
			
        			
        			
			/* pods côté */
			rounded("div.cdr-podT1","top","#fff","#01f","smooth");  
			rounded("div.cdr-podB1","bottom","#fff","#fff","smooth border #01f");	   
			rounded("div.cdr-podT2","top","#fff","#f70","smooth");  
			rounded("div.cdr-podB2","bottom","#fff","#fff","smooth border #f70");	   
			rounded("div.cdr-podB3","bottom","#fff","#d0e9fd","smooth");	   
			rounded("div.cdr-podB4","bottom","#fff","#ffdbb7","smooth");	   
			rounded("div.cdr-podB5","bottom","#fff","#d0e9fd","smooth border #01f");	
			rounded("div.cdr-podB6","bottom","#fff","#fff3e8","smooth border #f70");	
			rounded("div.cdr-podB7","bottom","#fff","#ecf5ff","smooth border #01f");	
			   
	}
	    
//-->
