// inizio: Parametri Vertical Scroller //PATTERN: quanti messaggi possono stare nella finestra mentre e' in pausa: //0 per UNO; //1 per VARI; //Quando si sceglie msgnr=1 (VARI), uno spazio vuoto sara' automaticamente //inserito dopo ogni messaggio; //"stileret" imposta la dimensione dello spazio vuoto; var msgnr=0; if(msgnr==1){ var retclass='class="stileret"'; } //If msgnr=0 for PATTERN SINGLE was chosen above and you want that any //mesage smaller than area NOT to be CELL-CENTERED, set below value 0: var celcen=1; //1: FIRST message shows up right at top edge (or cell-centered) and pauses; //If First message is to show up at bottom edge and starts scrolling, set below value 0: var udopt=1; //WIDTH of the Scroller in pixels: set to your own; //"px" unit will automatically be set in the process, so do not write "px"; var mwidth=200; //HEIGHT of the Scroller in pixels: set to your own; //"px" unit will automatically be set in the process, so do not write "px"; //larger Messages (exceeding height) will slide OK anyway, but //the exceeding height won't show up on option Instant Recall if chosen! var mheight=110; //BACKGROUND: either color(1) or image(2, see below) ; //1.Background color: could be like: "#ffff00" or "yellow"; //set it "" for no background color; var mcolor=""; //or 2.Background image: "imagename.ext"; //leave it "" for no image background; var mbground=""; //BORDER for scrolling area: 1, ... ; //set it 0(zero) for no border; var mborder=0; //SPEED in pixels: the higher the faster - set your own! var mspeed=1; //PAUSE between messages in milliseconds: 1000=1s; set to your own; var mpause = 2000; //Live speed-change option: 0 (not desired) or 1 (desired); //"stileupdn" would be the STYLE (CSS), see STEP I above; //celcolor would set background color var lsopt = 0; if(lsopt==1){ var vesclass='class="stileupdn"'; var celcolor='#ccffcc'; } //Recall Option: //Let it be 0 if not desired and the scroll will go on; //set it 1 if desired: after a complete cycle the scroll stops //and you may recall randomly any Message/Image; var rcopt=0; if(rcopt==1){ var cbtxt = new Array(); //MUST BE as many TEXTs as the number of Messages/Images; //Set your own TEXTs, like Messages Title or what you have in there: //cbtxt = ["1-TITLE", "2-Features", "3-Recall Option", "4-Other Possibilities", "5-Check"]; cbtxt=[]; } //end Parameters //=== //MESSAGGI........................................................ var slmg=new Array(); slmg[0]='CATALOGO ALL MOBILITY E INFORMAZIONI TECNICHE SUI PRODOTTI'+ '

Per richiedere l´invio del nostro catalogo ausili in formato cartaceo, per ottenere informazioni sulla nostra linea di prodotti potete contattarci allo 0522.941078 o scrivere a '+ '
info@allmobility.org'+ '

'; slmg[1]='ATTIVO SU YOU TUBE IL CANALE ALL MOBILITY'+ '

Con video dimostrativi di alcuni nostri prodotti:'+ '
-RUOTINO PER CARROZZINA CICLOPE'+ '
-MANIGLIONI A VENTOSA'+ '
-AUSILIO DI SICUREZZA POLE'+ '
-TRAVEL CHAIR'+ '

...e altri in arrivo!' '

'; slmg[2]='Inserimento nuovi prodotti'+ '

Sulla scia dell´integrazione al catalogo All Mobility ha giā disponibili ulteriori novitā, guarda le schede tecniche di:

'+ '
- RAMPE MOBILI da 7 o 14 cm
'+ '
- PARATIE MOBILI con 3 pannelli ed altezza di 70 o 90 cm
'+'

'; slmg[3]='Progetti Allmobility'+ '

ATTIVA LA NUOVA SEZIONE DEL SITO CON ESEMPI DI LAVORI DI:'+ '
- abbattimento barriere'+ '
- personalizzazione ausili'+ '
- ed altri progetti specifici

'; slmg[4]='CHIUSURA NATALIZIA'+ '

All Mobility informa che osserverā il periodo di chiusura per le festivitā natalizie tra il 2 ed il 6 Gennaio 2012 '+ '

'; slmg[5]='SUPPLEMENTI SEZIONE POSTURA E RICAMBI'+ '

Presentano dettagli e specifiche tecniche di alcuni prodotti delle rispettive sezioni. Guardali cliccando su:'+ '

SUPPLEMENTO SEZIONE POSTURA'+ '

SUPPLEMENTO SEZIONE RICAMBI'+ '

'; //FINE MESSAGGI.......................................................