TO_LOAD_INDEX++;
TO_LOAD[TO_LOAD_INDEX]='load_corners();';

function load_corners(){
	// Coins arrondis
	$(".corner").each(function(){
		var title=$(this).attr('title');
		var classe=$(this).attr('class');
		$(this).attr('class',classe.replace(/corner/,''));
		$(this).attr('title','');
		$(this).corner(title);
	});
}
