ÿþ<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="imagetoolbar" content="no" /> <meta name="Description" content="Sombor" /> <meta name="keywords" content="Sombor" /> <link rel="shortcut icon" href="/favicon.ico"> <style type="text/CSS" media="screen"> /* <![CDATA[ */ @import "includes/styles/screen_styler.css"; /* ]]> */ </style> <style type="text/CSS" media="print"> /* <![CDATA[ */ @import "includes/styles/print_styler.css"; /* ]]> */ </style> <title>Progetto Sombor</title> <p> <style type="text/css"> /*Example CSS for the two demo scrollers*/ #pscroller1{ width: 125px; height: 110px; border: 1px solid black; padding: 5px; background-color: lightgrey; } .someclass{ //class to apply to your scroller(s) if desired } </style> <script type="text/javascript"> /*Example message arrays for the two demo scrollers*/ var pausecontent=new Array() pausecontent[0]='<strong>DAL PROGETTO</strong><p>16-18 aprile 2010<p> sopralluogo in Serbia con i capi clan!' pausecontent[1]='<strong>DAL PROGETTO</strong><p>15-16 maggio 2010<p> due giorni di formazione per tutti i clan partecipanti in estate' pausecontent[2]='<strong>DAL SETT INTERNAZ</strong><p>15-17 maggio 2009<p> Mondo in Tenda evento di Fo.Ca. per Capi, Capi Campo e membri di Pattuglia dei progetti ' pausecontent[3]='<strong>DAL SETT INTERNAZ</strong><p>06 agosto - 30 agosto 2010<p> Tutti in Serbia!!!' pausecontent[4]='<strong>DAL PROGETTO</strong><p>26-30 dicembre 2009<p> consueto viaggio di Natale a Sombor' </script> <script type="text/javascript"> /*********************************************** * Pausing up-down scroller- ýÿ Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()}, 500) } // ------------------------------------------------------------------- // initialize()- Initialize scroller method. // -Get div objects, set initial positions, start up down animation // ------------------------------------------------------------------- pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) //set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2) this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px" this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0} if (window.attachEvent) //Clean up loose references in IE window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null}) setTimeout(function(){scrollerinstance.animateup()}, this.delay) } // ------------------------------------------------------------------- // animateup()- Move the two inner divs of the scroller up and in sync // ------------------------------------------------------------------- pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 50) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } // ------------------------------------------------------------------- // swapdivs()- Swap between which is the visible and which is the hidden div // ------------------------------------------------------------------- pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } // ------------------------------------------------------------------- // setmessage()- Populate the hidden div with the next message before it's visible // ------------------------------------------------------------------- pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 } </script> </head> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-1185562-10"; urchinTracker(); </script> <body> <div id="wrapper"> <div id="main_nav"> <img src="images/interface/mainmenu.gif" alt="Main Menu" /> <ul> <li id="home" class="sel"><a href="#">Home</a></li> <li id="identity"><a href="progetto.html">Il Progetto</a></li> <li id="printdesign"><a href="serbiasombor.html">la Serbia e Sombor</a></li> <li id="contact"><a href="contatti.html">Contatti</a></li> <li id="contact"><a href="varie.html">Utilità</a></li> </ul> <p> <br> <br> <br> <br> <br> <br> <br> <br> <br> <ul> <li id="contact"><a href="indexsrb.html">Srpski</a></li> <li id="contact"><a href="indexeng.html">English</a></li> </div><div id="sec_nav"> <img src="images/interface/submenu.gif" alt="Sub Menu" /> <ul> <li style="display:none;">&nbsp;</li> </ul> </div><div id="content"><img id="header" src="images/interface/header_index.gif" alt="" /><div id="visual_content"><img src="images/visual/index_14.jpg" alt="Progetto Sombor" /></div> <div id="text_content"> <div id="main_text"> <p> <strong>Dove:</strong> Repubblica Serba <br> <br> <strong>Quando:</strong> La nostra presenza a Sombor per il 2010 sarà nel mese di agosto organizzata in 3 turni. <ul> <li>1° turno: 06 agosto - 16 agosto </li> <li>2° turno: 13 agosto - 23 agosto </li> <li>3° turno: 20 agosto - 30 agosto </li> </ul> <strong>ISCRIZIONI:Le iscrizioni sono APERTE!!!</strong> <br><br><strong>quota approssimativa:</strong> 250 euro a testa <br><strong>iscrizione: </strong>tramite mail (vale la priorità della data di ricezione della mail) <br><strong>anticipo: </strong>50 euro da versare tramite bonifico bancario entro 5 giorni dalla iscrizione via mail<br> saldo: entro la settimana precedente il bivacco di formazione del 15-16 maggio 2010. <br><br> <strong>Aree Tematiche AGESCI:</strong> Accoglienza, conoscenza del diverso / Cittadinanza attiva e formazione di coscienza critica. <br><br> <strong>Obiettivi:</strong> Educazione alla pace e all'incontro: conoscere e riconoscere il fratello nell'altro. <br><br> <strong>Per chi:</strong> Clan e Noviziato AGESCI, Compagnie CNGEI <br><br> <strong>Attività:</strong> Esperienza strutturata come campo mobile che consentirà ai partecipanti di visitare diverse zone della Serbia: <br><strong>Belgrado:</strong> visita della Capitale della Repubblica di Serbia e della ex-Jugoslavia e incontro con la chiesa cattolica locale e rappresentanti della chiesa ortodossa (interreligiosità) <br><strong>Bezdan:</strong> Incontro e attività con PULS, ONG locale che opera a favore delle popolazioni locali sul confine tra Serbia e Croazia. <br><strong>Sombor:</strong> Esperienza di animazione rivolta a bambini e ragazzi dai 6 ai 18 anni ospiti dell'orfanotrofio Mika Antic o con situazioni di disagio sociale provenienti dalla zona, in collaborazione con enti e associazioni locali. <br>Incontro e confronto con persone significative e associazione attive nel territorio. <br><br><p>NOTA PER I PARTECIPANTI: per scegliere consapevolmente se vivere o meno questa esperienza cerchiamo di incontrare i clan interessati per presentare meglio il Progetto e la Route; inoltre per vivere al meglio l'esperienza è previsto un percorso di preparazione (p.e. un Capitolo) e di verifica successiva al campo. <p> <a href="http://www.ansa.it/balcani">leggi le ultime notizie sulla situazione della Serbia e del Kosovo ></a> <br><br>< <br><br>Per info e iscrizioni: <br> <strong>Francesco Gamberoni:</strong> <br>(+39) 349 55 06 276 <a href="mailto:refm@progettosombor.org">refm@progettosombor.org</a> <br> <strong>Monica Mondini:</strong><br> (+39) 340 58 58 774 <a href="mailto:reff@progettosombor.org">reff@progettosombor.org</a> </p> <div id="copy">&copy; 2008 Pisani Alessandro</div></div> <div id="sec_text"> <a href="partecipare.html">Per partecipare ></a> <p> </p> <strong>News</strong> <p> <script type="text/javascript"> //new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds) new pausescroller(pausecontent, "pscroller1", "someclass", 5000) document.write("<br />") new pausescroller(pausecontent2, "pscroller2", "someclass", 2000) </script> </p></div> </div> </div> </div> </body> </html> </script> </p></div> </div> </div> </div> </body> </html>  ??