// JavaScript Document
test = undefined;
setTimeout('var test = function(){ $("#accueil_bandeB").slideDown("slow"); }', 10);
var Start = (new Date()).getTime();
while(typeof test != 'function') {
   if( ((new Date()).getTime() - Start) > 500 ){
   $("#accueil_bandeB").slideDown("slow");
   break;
   }
}
if(typeof test == 'function') test();

