/*********************************************** * 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]="

2 March - 27 April, 2012

Course on Conservation of Built Heritage 2012

Rome, Italy

ICCROM is pleased to announce the fourth training course on Conservation of Built Heritage in Rome.

read more >

"; fcontent[1]="

8th March, 2012

Outstanding Universal Value, World Heritage Cities and Sustainability: The Island of Mozambique

Main Lecture Theatre, Edinburgh College of Art

Annual series of Architectural Conservation Masterclasses

read more >

"; fcontent[2]="

15th March, 2012

Historic Brickwork Renovation BDA Conservation Day

The Building Centre, London

This conference will be of benefit to everyone involved in the repair, maintenance and alteration of brick buildings.

read more >

"; fcontent[3]="

19-22 March, 2012

Specifying Conservation Works

West Dean College

This course covers specifying conservation works from inception to final account and post-contract debrief.

read more >

"; fcontent[4]="

5th April, 2012

An Introduction to Lime in Building

Brecon, Powys

This one day course starts with the principles of using lime in building and then focuses on practical demonstrations and hands-on work in pointing, plastering and limewashing.

read more >

"; fcontent[5]="

13th April, 2012

The Conservation of Historic Interiors

Corpus Christi College, Cambridge

ICCON's fourth annual Cambridge Conference.

read more >

"; fcontent[6]="

16 Feb - 28 April, 2012

A Place to Call Home: Where we live and why

London

An RIBA exhibition, guest curated by Sarah Beeny, charts the story of the design and appeal of everyday homes in the UK, from the advent of mass building in the late 18th C to the present day.

read more >

"; fcontent[7]="

14-17 May, 2012

Conservation and Repair of Brick, Terracotta and Flint Masonry

West Dean College

This course provides an understanding of, and basic skills in, the conservation and repair of traditional brick, terracotta and flint masonry.

read more >

"; fcontent[8]="

11-14 June, 2012

Managing Wildlife on Historic Monuments

West Dean College

The plants and animals that occur on historic buildings and sites are not only important for wildlife conservation but they contribute to the aesthetic appeal and are a valuable educational resource.

read more >

"; fcontent[9]="

18-21 June, 2012

Masonry Cleaning

West Dean College

A comprehensive course for architects, surveyors and practitioners which covers the complex aesthetic, technical and practical issues involved in cleaning masonry including brick and terracotta.

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