/*********************************************** * Fading Scroller- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var delay = 8000; //set delay between message change (in miliseconds) var maxsteps=30; // number of steps to take to change from start color to endcolor var stepdelay=60; // time in miliseconds of a single step //**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect var startcolor= new Array(228,236,248); // start color (red, green, blue) var endcolor=new Array(0,0,0); // end color (red, green, blue) var fcontent=new Array(); begintag='
'; //set opening tag, such as font declarations fcontent[0]="

23rd February, 2016

Architecture for the Contemporary Church: Imagining the New in the Context of the Old

St Mary Redcliffe Church, Bristol

This church architecture symposium will explore a wide range of issues associated with the development of new buildings on ecclesiastical heritage sites

read more >

"; fcontent[1]="

8-10 March, 2016

Ecobuild 2016

ExCel, London

Three-day international trade show and conference showcasing sustainable design, construction, energy and the built environment.

read more >

"; fcontent[2]="

8-9 April, 2016

The Use of Lime in Historic Buildings

Llanymynech Limeworks, Shropshire

Learn how to specify and apply lime mortar mixes

read more >

"; fcontent[3]="

9-13 May, 2016

SPAB Repair of Old Buildings Course

Spital Square, London

SPAB intensive five-day programme of lectures and visits to building repair projects

read more >

"; fcontent[4]="

19th May - 30 June, 2016

The 17th International Course on Wood Conservation Technology

Oslo, Norway

ICCROM international conference promoting cultural understanding and research in the field of wood conservation

read more >

"; fcontent[5]="

9th September, 2016

Capability Brown: Perception and Response in a Global Context

University of Bath

An international conference celebrating the Capability Brown tercentenary year

read more >

"; fcontent[6]="

13th September, 2016

Replicas and Reality: The Heritage Value of Replication and Reconstruction

Weald Downland Open Air Museum, West Sussex

Heritage significance or architectural ersatz A one-day conference exploring the heritage value of replicas

read more >

"; fcontent[7]="

9th November, 2016

Retrofitting Domestic Properties

City Hall, Cardiff

SPAB afternoon seminar led by the authors of Old House Eco Handbook, Marianne Suhr and Roger Hunt

read more >

"; closetag='
'; var fwidth='280px'; //set scroller width var fheight='180px'; //set scroller height var fadelinks=1; //should links inside scroller content also fade like text? 0 for no, 1 for yes. ///No need to edit below this line///////////////// var ie4=document.all&&!document.getElementById; var DOM2=document.getElementById; var faderdelay=0; var index=0; /*Rafael Raposo edited function*/ //function to change content function changecontent(){ if (index>=fcontent.length) index=0 if (DOM2){ document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")" document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag if (fadelinks) linkcolorchange(1); colorfade(1, 15); } else if (ie4) document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag; index++ } // colorfade() partially by Marcio Galli for Netscape Communications. //////////// // Modified by Dynamicdrive.com function linkcolorchange(step){ var obj=document.getElementById("fscroller").getElementsByTagName("A"); if (obj.length>0){ for (i=0;i 0) { newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step); } else { newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step); } } return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")"); } if (ie4||DOM2) document.write('
'); if (window.addEventListener) window.addEventListener("load", changecontent, false) else if (window.attachEvent) window.attachEvent("onload", changecontent) else if (document.getElementById) window.onload=changecontent