CINXE.COM
BBC - Tours - Homepage
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"> <head profile="http://dublincore.org/documents/dcq-html/"><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.bbc.co.uk/showsandtours/tours/","20130928095024","https://web.archive.org/","web","/_static/", "1380361824"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>BBC - Tours - Homepage</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="description" content="Step inside the BBC by going on a studio tour."/> <meta name="keywords" content="studio tour, BBC studios, Television Centre, Broadcasting House"/> <link rel="schema.dcterms" href="http://purl.org/dc/terms/"/> <meta name="DCTERMS.created" content="2006-09-15T12:00:00Z"/> <meta name="DCTERMS.modified" content="2013-07-18T15:23+0:00"/> <!-- Glow cachebust: --> <!-- Survey cachebust: --> <!-- Barlesque 2.51.6 --> <link rel="schema.dcterms" href="http://purl.org/dc/terms/"/> <link rel="index" href="http://www.bbc.co.uk/a-z/" title="A to Z"/> <link rel="copyright" href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/terms/" title="Terms of Use"/> <link rel="icon" href="https://web.archive.org/web/20130928095024im_/http://www.bbc.co.uk/favicon.ico" type="image/x-icon"/> <meta name="viewport" content="width = 974"/> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20130928095024cs_/http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/style/main.css"/> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20130928095024cs_/http://static.bbci.co.uk/bbcdotcom/0.3.204/style/3pt_ads.css"/> <script type="text/javascript">/*<![CDATA[*/ (function(undefined){if(!window.bbc){window.bbc={}}var ROLLING_PERIOD_DAYS=30;window.bbc.Mandolin=function(id,segments,opts){var now=new Date().getTime(),storedItem,DEFAULT_START=now,DEFAULT_RATE=1,COOKIE_NAME="ckpf_mandolin";opts=opts||{};this._id=id;this._segmentSet=segments;this._store=new window.window.bbc.Mandolin.Storage(COOKIE_NAME);this._opts=opts;this._rate=(opts.rate!==undefined)?+opts.rate:DEFAULT_RATE;this._startTs=(opts.start!==undefined)?new Date(opts.start).getTime():new Date(DEFAULT_START).getTime();this._endTs=(opts.end!==undefined)?new Date(opts.end).getTime():daysFromNow(ROLLING_PERIOD_DAYS);this._signupEndTs=(opts.signupEnd!==undefined)?new Date(opts.signupEnd).getTime():this._endTs;this._segment=null;if(typeof id!=="string"){throw new Error("Invalid Argument: id must be defined and be a string")}if(Object.prototype.toString.call(segments)!=="[object Array]"){throw new Error("Invalid Argument: Segments are required.")}if(opts.rate!==undefined&&(opts.rate<0||opts.rate>1)){throw new Error("Invalid Argument: Rate must be between 0 and 1.")}if(this._startTs>this._endTs){throw new Error("Invalid Argument: end date must occur after start date.")}if(!(this._startTs<this._signupEndTs&&this._signupEndTs<=this._endTs)){throw new Error("Invalid Argument: SignupEnd must be between start and end date")}removeExpired.call(this,now);if((storedItem=this._store.getItem(this._id))){this._segment=storedItem.segment}else{if(this._startTs<=now&&now<this._signupEndTs&&now<=this._endTs&&this._store.isEnabled()===true){this._segment=pick(segments,this._rate);if(opts.end===undefined){this._store.setItem(this._id,{segment:this._segment})}else{this._store.setItem(this._id,{segment:this._segment,end:this._endTs})}log.call(this,"mandolin_segment")}}log.call(this,"mandolin_view")};window.bbc.Mandolin.prototype.getSegment=function(){return this._segment};function log(actionType,params){var that=this;require(["istats-1"],function(istats){istats.log(actionType,that._id+":"+that._segment,params?params:{})})}function removeExpired(expires){var items=this._store.getItems(),expiresInt=+expires;for(var key in items){if(items[key].end!==undefined&&+items[key].end<expiresInt){this._store.removeItem(key)}}}function getLastExpirationDate(data){var winner=0,rollingExpire=daysFromNow(ROLLING_PERIOD_DAYS);for(var key in data){if(data[key].end===undefined&&rollingExpire>winner){winner=rollingExpire}else{if(+data[key].end>winner){winner=+data[key].end}}}return(winner)?new Date(winner):new Date(rollingExpire)}window.bbc.Mandolin.prototype.log=function(params){log.call(this,"mandolin_log",params)};window.bbc.Mandolin.prototype.convert=function(params){log.call(this,"mandolin_convert",params);this.convert=function(){}};function daysFromNow(n){var endDate;endDate=new Date().getTime()+(n*60*60*24)*1000;return endDate}function pick(segments,rate){var picked,min=0,max=segments.length-1;if(typeof rate==="number"&&Math.random()>rate){return null}do{picked=Math.floor(Math.random()*(max-min+1))+min}while(picked>max);return segments[picked]}window.bbc.Mandolin.Storage=function(name){this._cookieName=name;this._isEnabled=(bbccookies.isAllowed(this._cookieName)===true&&bbccookies.cookiesEnabled()===true)};window.bbc.Mandolin.Storage.prototype.setItem=function(key,value){var storeData=this.getItems();storeData[key]=value;this.save(storeData);return value};window.bbc.Mandolin.Storage.prototype.isEnabled=function(){return this._isEnabled};window.bbc.Mandolin.Storage.prototype.getItem=function(key){var storeData=this.getItems();return storeData[key]};window.bbc.Mandolin.Storage.prototype.removeItem=function(key){var storeData=this.getItems();delete storeData[key];this.save(storeData)};window.bbc.Mandolin.Storage.prototype.getItems=function(){return deserialise(this.readCookie(this._cookieName)||"")};window.bbc.Mandolin.Storage.prototype.save=function(data){window.bbccookies.set(this._cookieName+"="+serialise(data)+"; expires="+getLastExpirationDate(data).toUTCString()+";")};window.bbc.Mandolin.Storage.prototype.readCookie=function(name){var nameEQ=name+"=",ca=window.bbccookies.get().split(";"),i,c;for(i=0;i<ca.length;i++){c=ca[i];while(c.charAt(0)===" "){c=c.substring(1,c.length)}if(c.indexOf(nameEQ)===0){return c.substring(nameEQ.length,c.length)}}return null};function serialise(o){var str="";for(var p in o){if(o.hasOwnProperty(p)){str+='"'+p+'"'+":"+(typeof o[p]==="object"?(o[p]===null?"null":"{"+serialise(o[p])+"}"):'"'+o[p].toString().replace(/"/g,'\\"')+'"')+","}}return str.replace(/,\}/g,"}").replace(/,$/g,"")}function deserialise(str){var o;eval("o = {"+str+"}");return o}})(); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies_flag === 'undefined') { bbccookies_flag = 'ON'; } showCTA_flag = false; cta_enabled = (showCTA_flag && (bbccookies_flag === 'ON') ); (function(){var e="ckns_policy",m="Thu, 01 Jan 1970 00:00:00 GMT",k={ads:true,personalisation:true,performance:true,necessary:true};function f(p){if(f.cache[p]){return f.cache[p]}var o=p.split("/"),q=[""];do{q.unshift((o.join("/")||"/"));o.pop()}while(q[0]!=="/");f.cache[p]=q;return q}f.cache={};function a(p){if(a.cache[p]){return a.cache[p]}var q=p.split("."),o=[];while(q.length&&"|co.uk|com|".indexOf("|"+q.join(".")+"|")===-1){if(q.length){o.push(q.join("."))}q.shift()}f.cache[p]=o;return o}a.cache={};function i(o,t,p){var z=[""].concat(a(window.location.hostname)),w=f(window.location.pathname),y="",r,x;for(var s=0,v=z.length;s<v;s++){r=z[s];for(var q=0,u=w.length;q<u;q++){x=w[q];y=o+"="+t+";"+(r?"domain="+r+";":"")+(x?"path="+x+";":"")+(p?"expires="+p+";":"");bbccookies.set(y,true)}}}window.bbccookies={_setEverywhere:i,cookiesEnabled:function(){var o="ckns_testcookie"+Math.floor(Math.random()*100000);this.set(o+"=1");if(this.get().indexOf(o)>-1){g(o);return true}return false},set:function(o){return document.cookie=o},get:function(){return document.cookie},_setPolicy:function(o){return h.apply(this,arguments)},readPolicy:function(o){return b.apply(this,arguments)},_deletePolicy:function(){i(e,"",m)},isAllowed:function(){return true},_isConfirmed:function(){return c()!==null},_acceptsAll:function(){var o=b();return o&&!(j(o).indexOf("0")>-1)},_getCookieName:function(){return d.apply(this,arguments)},_showPrompt:function(){var o=(!this._isConfirmed()&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable);return(window.orb&&window.orb.fig)?o&&(window.orb.fig("no")||window.orb.fig("ck")):o}};bbccookies._getPolicy=bbccookies.readPolicy;function d(p){var o=(""+p).match(/^([^=]+)(?==)/);return(o&&o.length?o[0]:"")}function j(o){return""+(o.ads?1:0)+(o.personalisation?1:0)+(o.performance?1:0)}function h(r){if(typeof r==="undefined"){r=k}if(typeof arguments[0]==="string"){var o=arguments[0],q=arguments[1];if(o==="necessary"){q=true}r=b();r[o]=q}else{if(typeof arguments[0]==="object"){r.necessary=true}}var p=new Date();p.setYear(p.getFullYear()+1);p=p.toUTCString();bbccookies.set(e+"="+j(r)+";domain=bbc.co.uk;path=/;expires="+p+";");bbccookies.set(e+"="+j(r)+";domain=bbc.com;path=/;expires="+p+";");return r}function l(o){if(o===null){return null}var p=o.split("");return{ads:!!+p[0],personalisation:!!+p[1],performance:!!+p[2],necessary:true}}function c(){var o=new RegExp("(?:^|; ?)"+e+"=(\\d\\d\\d)($|;)"),p=document.cookie.match(o);if(!p){return null}return p[1]}function b(o){var p=l(c());if(!p){p=k}if(o){return p[o]}else{return p}}function g(o){return document.cookie=o+"=;expires="+m+";"}function n(){var o='<script type="text/javascript" src="https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/bbccookies/0.6.2/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})(); /*]]>*/</script> <script type="text/javascript"> if (! window.gloader) { window.gloader = [ "glow", {map: "https://web.archive.org/web/20130928095024/http://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://node1.bbcimg.co.uk/glow/gloader.0.1.6.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://static.bbci.co.uk/frameworks/requirejs/0.13.1/sharedmodules/require.js"></script> <script type="text/javascript"> bbcRequireMap = {"jquery-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.7.2", "jquery-1.4":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.4", "jquery-1.9":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.9.1", "swfobject-2":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/swfobject/0.1.10/sharedmodules/swfobject-2", "demi-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/demi/0.10.0/sharedmodules/demi-1", "gelui-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/gelui/0.9.13/sharedmodules/gelui-1", "cssp!gelui-1/overlay":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/gelui/0.9.13/sharedmodules/gelui-1/overlay.css", "istats-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/istats/0.16.1/modules/istats-1", "relay-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/relay/0.2.4/sharedmodules/relay-1", "clock-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/clock-1", "canvas-clock-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/canvas-clock-1", "cssp!clock-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/clock/0.1.9/sharedmodules/clock-1.css", "jssignals-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1", "jcarousel-1":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/jcarousel/0.1.10/modules/jcarousel-1"}; require({ baseUrl: 'https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/', paths: bbcRequireMap, waitSeconds: 30 }); </script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/script/blq_core.js"></script> <!--[if (IE 6)|(IE 7)|(IE 8)]> <style type="text/css"> html{font-size:125%} body{font-size:50%} .blq-tooltipped:hover {background-position:0 0} #blq-autosuggest ul li { zoom:normal; } .skylightTheme #blq-mast-home, .doveTheme #blq-mast-home, .tealTheme #blq-mast-home, .aquaTheme #blq-mast-home, .greenTheme #blq-mast-home, .violetTheme #blq-mast-home, .purpleTheme #blq-mast-home, .pinkTheme #blq-mast-home, .oliveTheme #blq-mast-home, .suedeTheme #blq-mast-home, .redTheme #blq-mast-home, .orangeTheme #blq-mast-home { filter: none; -ms-filter: ""; } #blq-nav-main { background-position: 96% 17px; } </style> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/style/ie7.css" type="text/css" /> <style type="text/css"> .blq-clearfix {display: inline-block} </style> <![endif]--> <!--[if IE 6]> <link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/style/ie6.css" type="text/css" /> <style type="text/css"> .blq-js #blq-nav-foot div {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/img/panel.png', sizingMethod='image');margin-top:-139px} #blq-container {height: 15%} #blq-mast-home span.blq-home { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod='crop', src='http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/img/blocks.png');} #blq-mast #blq-search-btn { background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/img/blq-search_grey_alpha.png', sizingMethod='image'); } </style> <script type="text/javascript"> try { document.execCommand("BackgroundImageCache",false,true); } catch(e) {} </script> <![endif]--> <script type="text/javascript"> blq.assetPath="https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/"; blqOnDomReady(function() { blq.suggest_short = false; blq.addAutoSuggest(); }); blq.setEnvironment('live'); if (! /bbc\.co\.uk$/i.test(window.location.hostname) ) { document.documentElement.className += ' blq-not-bbc-co-uk'; } </script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://static.bbci.co.uk/frameworks/pulsesurvey/0.9.3/script/pulse.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://www.bbc.co.uk/survey/pulse/conf.js"></script> <script type="text/javascript"> pulse.translations.intro = "We are always looking to improve the site and your opinions count."; pulse.translations.question = "Do you have a few minutes to tell us what you think about this site?"; pulse.translations.accept = "Yes"; pulse.translations.reject = "No"; </script> <link rel="stylesheet" href="https://web.archive.org/web/20130928095024cs_/http://static.bbci.co.uk/frameworks/pulsesurvey/0.9.3/style/pulse.css" type="text/css"/> <!--[if gte IE 6]> <style type="text/css"> .pulse-pop li{display:inline;width:40px} </style> <![endif]--> <!--[if IE 6]> <style type="text/css"> .pulse-pop li{display:inline;width:40px} .pulse-pop #pulse-q{background:url(http://static.bbci.co.uk/frameworks/pulsesurvey/0.9.3/img/pulse_bg.gif) no-repeat} .pulse-pop #pulse-a{background:url(http://static.bbci.co.uk/frameworks/pulsesurvey/0.9.3/img/pulse_bg.gif) bottom no-repeat;} </style> <![endif]--> <!--[if IE 7]> <style type="text/css"> .pulse-pop #pulse-a{zoom:1} </style> <![endif]--> <!-- ISTATS --> <script type="text/javascript"> if (! window.gloader) { window.gloader = [ "glow", {map: "https://web.archive.org/web/20130928095024/http://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script> <!-- BBCDOTCOM template:server-side journalismVariant: false ipIsAdvertiseCombined: true adsEnabled: true showDotcom: true flagpole: ON --> <meta name="application-name" content="BBC"/> <meta name="msapplication-tooltip" content="Explore the BBC, for latest news, sport and weather, TV & radio schedules and highlights, with nature, food, comedy, children's programmes and much more"/> <meta name="msapplication-starturl" content="http://www.bbc.com/?ocid=global-barlesque-pinned-ie9"/> <meta name="msapplication-window" content="width=1024;height=768"/> <meta name="msapplication-task" content="name=BBC Home;action-uri=http://www.bbc.com/?ocid=global-homepage-pinned-ie9;icon-uri=http://static.bbci.co.uk/bbcdotcom/0.3.204/img/favicon_16.ico"/> <meta name="msapplication-task" content="name=BBC News;action-uri=http://www.bbc.com/news/?ocid=global-news-pinned-ie9;icon-uri=http://static.bbci.co.uk/bbcdotcom/0.3.204/img/favicon_16.ico"/> <meta name="msapplication-task" content="name=BBC Sport;action-uri=http://www.bbc.com/sport/0/?ocid=global-sport-pinned-ie9;icon-uri=http://static.bbci.co.uk/bbcdotcom/0.3.204/img/favicon_16.ico"/> <meta name="msapplication-task" content="name=BBC Future;action-uri=http://www.bbc.com/future?ocid=global-future-pinned-ie9;icon-uri=http://static.bbci.co.uk/bbcdotcom/0.3.204/img/favicon_16.ico"/> <meta name="msapplication-task" content="name=BBC Travel;action-uri=http://www.bbc.com/travel?ocid=global-travel-pinned-ie9;icon-uri=http://static.bbci.co.uk/bbcdotcom/0.3.204/img/favicon_16.ico"/> <meta name="msapplication-task" content="name=BBC Weather;action-uri=http://www.bbc.com/weather/?ocid=global-weather-pinned-ie9;icon-uri=http://static.bbci.co.uk/bbcdotcom/0.3.204/img/favicon_16.ico"/> <style type="text/css">.bbccom_display_none{display:none;}</style> <script type="text/javascript"> /*<![CDATA[*/ if (bbcdotcom === undefined) { var bbcdotcom = { data: {}, advert: { write: function () {}, show: function () {}, isActive: function () { return false; } } }; } bbcdotcom.objects = function (strName, action, obj) { var nameParts, i, len; nameParts = strName.split("."); if (action === undefined) { action = 'valid'; } if (obj === undefined) { obj = window; } for (i = 0, len = nameParts.length; i < len; i++) { if (obj[nameParts[i]] === undefined) { if (action === 'create') { obj[nameParts[i]] = {}; } else { return false; } } else if (typeof obj[nameParts[i]] === 'function') { if(obj[nameParts[i]]() !== undefined) { return obj[nameParts[i]](); } } obj = obj[nameParts[i]]; } return obj; }; bbcdotcom.objects('bbcdotcom.config', 'create'); bbcdotcom.config =(function(ads, analytics) { var adsEnabled=ads, analyticsEnabled=analytics; return { setAdsEnabled: function(enabled) { /* Once it has been disable to not allow it to be enabled */ adsEnabled = (adsEnabled !== 0) ? enabled : 0; }, isAdsEnabled: function() { return adsEnabled; }, setAnalyticsEnabled: function(enabled) { /* Once it has been disable to not allow it to be enabled */ analyticsEnabled = (analyticsEnabled !== 0) ? enabled : 0; }, isAnalyticsEnabled: function() { return analyticsEnabled; } }; }(1, 1)); bbcdotcom.objects('create', bbcdotcom, 'siteCatalyst'); bbcdotcom.siteCatalyst = {"ch":"","cdp":"3","ce":"UTF-8"}; bbcdotcom.objects('bbcdotcom.stats', 'create'); /* Create BBC.adverts skeleton */ if (BBC === undefined) { var BBC = {}; } if (BBC.adverts === undefined) { BBC.adverts = { setZone: function () {}, configure: function () {}, write: function () {}, show: function () {}, isActive: function () { return false; }, setScriptRoot: function () {}, setImgRoot: function () {}, getAdvertTag: function () {}, getSectionPath: function() {}, showPartnerButtons: function() {} }; } (function(){ if(typeof require !== 'undefined') { require({ paths:{ "bbcdotcom":"https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/bbcdotcom/0.3.204/script" } }); } })(); /*]]>*/ </script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://static.bbci.co.uk/bbcdotcom/0.3.204/script/bbccom.js"></script> <script type="text/javascript"> /*<![CDATA[*/ (function(){ var zoneFile = "3pt_zone_file"; bbcdotcom.objects('page', 'create', bbcdotcom); if('undefined' == typeof(bbcdotcom.latest_version)) { BBC.adverts.setScriptRoot("https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/bbcdotcom/0.3.204/script/"); } else { BBC.adverts.setScriptRoot('https://web.archive.org/web/20130928095024/http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/js/app/bbccom/' + bbcdotcom.latest_version + '/'); } BBC.adverts.setImgRoot("https://web.archive.org/web/20130928095024/http://static.bbci.co.uk/bbcdotcom/0.3.204/img/"); BBC.adverts.init({ domain: "127.0.0.1:8888", location: window.location.pathname, zoneVersion: zoneFile, zoneAuto: false, siteAuto: false, keywordsAuto: false, zoneReferrer: document.referrer }); bbcdotcom.adUnit = 'bbccom.live.site.mobile.news/frameworks_barlesque'; })(); /*]]>*/ </script> <style type="text/css" media="all">@import '/web/20130928095024cs_/http://www.bbc.co.uk/showsandtours/assets/style/styles.css';</style> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="/showsandtours/assets/style/styles_ie6.css" /> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="/showsandtours/assets/style/styles_ie8.css"> <![endif]--> <link rel="stylesheet" type="text/css" href="/web/20130928095024cs_/http://www.bbc.co.uk/showsandtours/assets/style/print.css" media="print"/> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://www.bbc.co.uk/emp/swfobject.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://www.bbc.co.uk/emp/embed.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://www.bbc.co.uk/glow/gloader.js"></script> <script type="text/javascript"> gloader.load(["glow", "1", "glow.anim", "glow.net"]); </script> <script type="text/javascript" src="/web/20130928095024js_/http://www.bbc.co.uk/showsandtours/assets/js/satTours.js"></script> </head> <body> <script type="text/javascript">/*<![CDATA[*/ bbcFlagpoles_istats = 'ON'; istatsTrackingUrl = '//web.archive.org/web/20130928095024/http://sa.bbc.co.uk/bbc/bbc/s?name=SET-COUNTER&app_type=web&ml_name=SSI&ml_version=0.16.1&language=en-GB'; if (window.istats_countername) { istatsTrackingUrl = istatsTrackingUrl.replace(/([?&]name=)[^&]+/ig, '$1' + istats_countername); } (function() { if ( /\bIDENTITY=/.test(document.cookie) ) { istatsTrackingUrl += '&bbc_identity=1'; } var c = (document.cookie.match(/\bckns_policy=(\d\d\d)/)||[]).pop() || ''; istatsTrackingUrl += '&bbc_mc=' + (c? 'ad'+c.charAt(0)+'ps'+c.charAt(1)+'pf'+c.charAt(2) : 'not_set'); if ( /\bckns_policy=\d\d0/.test(document.cookie) ) { istatsTrackingUrl += '&ns_nc=1'; } var screenWidthAndHeight = 'unavailable'; if (window.screen && screen.width && screen.height) { screenWidthAndHeight = screen.width + 'x' + screen.height; } istatsTrackingUrl += ('&screen_resolution=' + screenWidthAndHeight); istatsTrackingUrl += '&blq_s=2.8&blq_r=2.7&blq_v=default-worldwide'; })(); /*]]>*/</script> <!-- Begin iStats 20100118 (UX-CMC 1.1009.3) --> <script type="text/javascript">/*<![CDATA[*/ (function() { window.istats || (istats = {}); var cookieDisabled = (document.cookie.indexOf('NO-SA=') != -1), hasCookieLabels = (document.cookie.indexOf('sa_labels=') != -1), hasClickThrough = /^#sa-(.*?)(?:-sa(.*))?$/.test(document.location.hash), runSitestat = !cookieDisabled && !hasCookieLabels && !hasClickThrough && !istats._linkTracked; if (runSitestat && bbcFlagpoles_istats === 'ON') { sitestat(istatsTrackingUrl); } else { window.ns_pixelUrl = istatsTrackingUrl; /* used by Flash library to track */ } function sitestat(n){var j=document,f=j.location,b="";if(j.cookie.indexOf("st_ux=")!=-1){var k=j.cookie.split(";");var e="st_ux",h=document.domain,a="/";if(typeof ns_!="undefined"&&typeof ns_.ux!="undefined"){e=ns_.ux.cName||e;h=ns_.ux.cDomain||h;a=ns_.ux.cPath||a}for(var g=0,f=k.length;g<f;g++){var m=k[g].indexOf("st_ux=");if(m!=-1){b="&"+unescape(k[g].substring(m+6))}}document.cookie=e+"=; expires="+new Date(new Date().getTime()-60).toGMTString()+"; path="+a+"; domain="+h}ns_pixelUrl=n;n=ns_pixelUrl+"&ns__t="+(new Date().getTime())+"&ns_c="+((j.characterSet)?j.characterSet:j.defaultCharset)+"&ns_ti="+escape(j.title)+b+"&ns_jspageurl="+escape(f&&f.href?f.href:j.URL)+"&ns_referrer="+escape(j.referrer);if(n.length>2000&&n.lastIndexOf("&")){n=n.substring(0,n.lastIndexOf("&")+1)+"ns_cut="+n.substring(n.lastIndexOf("&")+1,n.lastIndexOf("=")).substring(0,40)}(j.images)?new Image().src=n:j.write('<p><i'+'mg src="'+n+'" height="1" width="1" alt="" /></p>')}; })(); /*]]>*/</script> <noscript><p style="position: absolute; top: -999em;"><img src="//web.archive.org/web/20130928095024im_/http://sa.bbc.co.uk/bbc/bbc/s?name=SET-COUNTER&app_type=web&ml_name=SSI&ml_version=0.16.1&language=en-GB&blq_s=2.8&blq_r=2.7&blq_v=default-worldwide" height="1" width="1" alt=""/></p></noscript> <!-- End iStats (UX-CMC) --> <div id="blq-container" class="blq-lang-en-GB blq-dotcom blq-gvl-2-8"> <div id="blq-pre-mast" lang="en-GB"> <!-- Pre mast --> <!-- BBCDOTCOM leaderboard template:server-side journalismVariant: false ipIsAdvertiseCombined: true adsEnabled: true showDotcom: true flagpole: ON conf->showAdAboveBlq: true showAdAboveBlq: true blqLeaderboardAd: true --> <div id="bbccom_leaderboard_container"> <div id="bbccom_leaderboard" class="bbccom_display_none bbccom_leaderboard"> <script type="text/javascript">BBC.adverts.write("leaderboard", true);</script> </div> <script type="text/javascript">BBC.adverts.show("leaderboard");</script> </div> </div> <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <div id="bbccookies-prompt" class="bbccookies-w"> <h2> Cookies on the BBC website </h2> <p> We use cookies to ensure that we give you the best experience on our website.<span class="bbccookies-international-message"> We also use cookies to ensure we show you advertising that is relevant to you.</span> If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the BBC website. However, if you would like to, you can <a href="/privacy/cookies/managing/cookie-settings.html">change your cookie settings</a> at any time. </p> <ul> <li id="bbccookies-continue"> <button type="button" id="bbccookies-continue-button">Continue</button> </li> <li id="bbccookies-more"><a href="/privacy/cookies/bbc">Find out more</a></li></ul> </div> ]]></script> <script type="text/javascript">/*<![CDATA[*/ (function(){if(bbccookies._showPrompt()){var i=document,b=i.getElementById("blq-pre-mast"),f=i.getElementById("blq-global"),h=i.getElementById("blq-container"),c=i.getElementById("blq-bbccookies-tmpl"),a,g,e;if(b&&i.createElement){a=i.createElement("div");a.id="bbccookies";e=c.innerHTML;e=e.replace("<"+"![CDATA[","").replace("]]"+">","");a.innerHTML=e;if(f){f.insertBefore(a,b)}else{h.insertBefore(a,b)}g=i.getElementById("bbccookies-continue-button");g.onclick=function(){a.parentNode.removeChild(a);return false};bbccookies._setPolicy()}}})(); /*]]>*/</script> <span id="blq-mast-background"></span> <div id="blq-container-inner" lang="en-GB"> <div id="blq-acc" class="blq-rst"> <p id="blq-mast-home" class="blq-no-images"><a href="/web/20130928095024/http://www.bbc.co.uk/" hreflang="en-GB"> <span id="blq-blocks-wrapper"> <span class="blq-home">British Broadcasting Corporation</span><img src="https://web.archive.org/web/20130928095024im_/http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/img/blocks.png" alt="BBC" id="blq-blocks" width="84" height="24"/><span class="blq-span">Home</span> </span> </a></p> <p class="blq-hide"><strong><a id="page-top">Accessibility links</a></strong></p> <ul id="blq-acc-links"> <li><a href="#blq-content">Skip to content</a></li> <li><a href="#blq-local-nav">Skip to local navigation</a></li> <li><a href="#blq-nav-main">Skip to bbc.co.uk navigation</a></li> <li><a href="#blq-search">Skip to bbc.co.uk search</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul> </div> <div id="blq-main" class="blq-clearfix"> <div id="bottomImageHolder" class="toursBottomImage"> <!-- START HEADER --><div id="header" class="tours"> <h1 class="headerBranding toursHeader"><a href="/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/" title="Return to the Events home page">Events home page</a></h1><h2>Step inside the BBC:</h2><h3>behind the scenes tours</h3> </div> <!-- END HEADER --> <div id="mainImageBackGroundHolder" class="toursIndex"> <!-- START TOP NAV --> <div id="blq-local-nav"> <h2 class="blq-hide">Local Navigation</h2> <ul id="nav"> <li id="nav-home"><a href="/web/20130928095024/http://www.bbc.co.uk/showsandtours/">Home</a></li> <li id="nav-audience"><a href="/web/20130928095024/http://www.bbc.co.uk/showsandtours/tickets/">Be in the audience</a></li> <li id="nav-show"><a href="/web/20130928095024/http://www.bbc.co.uk/showsandtours/beonashow/">Be on a show</a></li> <li id="nav-tour"><a href="/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/" class="current">Book a tour</a></li> <li id="nav-events"><a href="/web/20130928095024/http://www.bbc.co.uk/showsandtours/events/">Join us at an event</a></li> </ul> </div> <!-- END TOP NAV --> <!-- START MAIN CONTENT --> <div id="blq-content"> <div id="sidebar"> <div id="rssFeed" class="toursRssLinks"><a href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/shows/rss/calendar.xml" class="rssLink">Event feed</a> | <a href="https://web.archive.org/web/20130928095024/http://news.bbc.co.uk/1/hi/help/3223484.stm">what is RSS?</a></div> <!-- /////////////////////////////////////////////////////////////// --> <div class="ppOuter"> <div class="ppInner"> <div class="ppContent pp_tours"> <h2>Highlights</h2> <p><a href="bh_london.shtml">Book a tour of Broadcasting House</a><br/> Portland Place, London</p> <p class="pp_centreImage"><a href="bh_london.shtml"><img src="https://web.archive.org/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/tours/bh_2013.jpg" width="256" height="179" alt="BBC Broadcasting House c Jeff Overs"/></a></p> <p>Book now for our new BBC Tour of Broadcasting House, London.</p> <p>Our entertaining and informative guides will bring to life the work of the BBC's brand new, state of the art, multimedia broadcasting centre in the heart of London.</p> <hr/> <h3>Don't miss out</h3> <p><a href="https://web.archive.org/web/20130928095024/https://www.bbc.co.uk/showsandtours/shows/forms/forms?formType=mailing">Join our mailing list</a></p> <p> <img src="https://web.archive.org/web/20130928095024im_/http://node1.bbcimg.co.uk/showsandtours/assets/images/tours/facebook.png" alt="Facebook" style="float: left; text-align: center; width:15px; height:15px; padding:0 2px 0 0; margin:0 2px 0 0;"/> <a href="https://web.archive.org/web/20130928095024/http://www.facebook.com/bbctours">Become a fan on facebook</a></p> </div> </div> </div> <div class="ppOuter"> <div class="ppInner"> <div class="ppContent pp_tickets"> <p>The BBC aims to truly reflect the nations, regions and diverse communities we serve, and to involve all sections of our audience in making shows. We want to encourage people of all ages, backgrounds and abilities to apply to participate as members of studio audiences and contributors to programmes, to tour our buildings and to join us at events. We regularly audit BBC buildings to ensure accessibility for all visitors with disabilities and will, where possible, make reasonable adjustments for disabled people wishing to take part in BBC activities.</p> </div> </div> </div> <!-- /////////////////////////////////////////////////////////////// --> </div> <!-- end of main left col --> <!-- start of main right col --> <div id="main" class="tours_RightCol"> <!-- start tours items --> <div class="current toursItem"> <div class="toursItemTabs"> <ul class="topTabs"> <li class="slctd"><a href="#allTours" class="allTours_all">All tours</a></li> <li><a href="#england" class="allTours_eng">England</a></li> <li><a href="#northernIreland" class="allTours_ni">Northern Ireland</a></li> <li><a href="#scotland" class="allTours_sco">Scotland</a></li> <li><a href="#wales" class="allTours_cym">Wales</a></li> </ul> </div> <div class="tourItemHeader"><a name="allTours"></a><h2>All tours</h2></div> <div class="toursList"> <ul> <li> <a class="tours_Image" href="bh_london.shtml"><img src="https://web.archive.org/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126bh_2013.jpg" width="126" height="71" alt="Broadcasting House, London 漏Jeff Overs"/></a> <div class="tours_listItem"> <p><a href="bh_london.shtml">BBC Broadcasting House</a></p> <p>London W1</p> <p>Enjoy a brand new tour of BBC Broadcasting House.</p> </div> <a class="tours_bookNow" href="bh_london.shtml">Book</a> </li> <li> <a class="tours_Image" href="televisioncentre.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/london_tvc.jpg" width="126" height="71" alt="BBC Television Centre"/></a> <div class="tours_listItem"><p><a href="televisioncentre.shtml">BBC Television Centre</a></p><p>London W12</p><p>Tours of Television Centre ceased on 22 February 2013.</p></div><a class="tours_bookNow" href="televisioncentre.shtml">More</a> </li> <li> <a class="tours_Image" href="salford.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126salford.jpg" width="126" height="71" alt="BBC at MediaCityUK"/></a> <div class="tours_listItem"><p><a href="salford.shtml">BBC Tour at MediaCityUK</a> </p><p>Salford</p> <p>Join us on a tour of the BBC at MediaCityUK – the BBC's home in the North of England. </p> </div> <a class="tours_bookNow" href="salford.shtml">Book</a> </li> <li> <a class="tours_Image" href="salford_cbbc.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126salford_cbbc.jpg" width="126" height="71" alt="CBBC at MediaCityUK"/></a> <div class="tours_listItem"> <p><a href="salford_cbbc.shtml">CBBC Tour at MediaCityUK </a></p><p>Salford</p> <p>For children aged 6 to 11 – see the home of programmes such as Blue Peter and Newsround. </p> </div> <a class="tours_bookNow" href="salford_cbbc.shtml">Book</a> </li> <li> <a class="tours_Image" href="birmingham.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/birmingham.jpg" width="126" height="71" alt="BBC Birmingham at the Mailbox"/></a> <div class="tours_listItem"><p><a href="birmingham.shtml">BBC Birmingham</a></p><p>Birmingham</p><p>Enjoy a tour of BBC Birmingham's home in The Mailbox.</p></div> <a class="tours_bookNow" href="birmingham.shtml">Book</a> </li> <li> <a class="tours_Image" href="norwich.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/norwich.jpg" width="126" height="71" alt="BBC Norwich"/></a> <div class="tours_listItem"><p><a href="norwich.shtml">BBC Norwich</a></p><p>Norwich</p><p>See behind the scenes of the BBC in Norwich.</p></div> <a class="tours_bookNow" href="norwich.shtml">Book</a> </li> <li> <a class="tours_Image" href="bristol.shtml"><img src="https://web.archive.org/web/20130928095024im_/http://node1.bbcimg.co.uk/showsandtours/assets/images/toursThumbs/bristol.jpg" width="126" height="71" alt="BBC Bristol"/></a> <div class="tours_listItem"><p><a href="bristol.shtml">BBC Bristol</a></p><p>Bristol</p><p>Enjoy a tour of BBC Broadcasting House, Bristol.</p></div> <a class="tours_bookNow" href="bristol.shtml">Book</a> </li> <li> <a class="tours_Image" href="newcastle.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/newcastle.jpg" width="126" height="71" alt="BBC Newcastle"/></a> <div class="tours_listItem"><p><a href="newcastle.shtml">BBC Newcastle</a></p><p>Newcastle upon Tyne</p><p>Get an insight into the behind-the-scenes action that takes place at BBC Radio Newcastle and Look North. </p></div> <a class="tours_bookNow" href="newcastle.shtml">Book</a> </li> <li> <a class="tours_Image" href="cardiff.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126cardiff.jpg" width="126" height="71" alt="BBC Cymru Wales"/></a> <div class="tours_listItem"><p><a href="cardiff.shtml">BBC Cymru Wales</a></p><p>Cardiff</p> <p>Enjoy a tour of BBC Cymru Wales's headquarters in Llandaff, Cardiff.</p> </div> <a class="tours_bookNow" href="cardiff.shtml">Book</a> </li> <li> <a class="tours_Image" href="cymru_caerdydd.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126cardiff.jpg" width="126" height="71" alt="BBC Cymru Wales"/></a> <div class="tours_listItem"><p><a href="cymru_caerdydd.shtml">BBC Cymru Wales (Welsh-language tour)</a></p><p>Cardiff</p><p>Enjoy a Welsh-language tour of BBC Cymru Wales's headquarters in Llandaff, Cardiff.</p></div> <a class="tours_bookNow" href="cymru_caerdydd.shtml">Book</a> </li> <li> <a class="tours_Image" href="pacificquay.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/pacificquay.jpg" width="126" height="71" alt="BBC Scotland at Pacific Quay"/></a> <div class="tours_listItem"><p><a href="pacificquay.shtml">BBC Scotland, Pacific Quay</a></p><p>Glasgow</p><p>Enjoy a behind-the-scenes tour of BBC Scotland's new headquarters. </p></div> <a class="tours_bookNow" href="pacificquay.shtml">Book</a> </li> <li> <a class="tours_Image" href="rivercity.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/rivercity.jpg" width="126" height="71" alt="BBC Scotland, River City"/></a> <div class="tours_listItem"><p><a href="rivercity.shtml">BBC Scotland, River City</a></p><p>Dumbarton</p><p>Go behind the scenes of the set of River City, set in the fictional urban neighbourhood of Shieldinch in Glasgow. </p></div> <a class="tours_bookNow" href="rivercity.shtml">Book</a> </li> <li> <a class="tours_Image" href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/belfast.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126belfast_2012.jpg" width="126" height="71" alt="BBC Northern Ireland"/></a> <div class="tours_listItem"><p><a href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/belfast.shtml">BBC Northern Ireland</a></p><p>Belfast</p><p>A tour of BBC Broadcasting House provides a unique opportunity to go behind the scenes at BBC Northern Ireland. </p></div> <a class="tours_bookNow" href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/belfast.shtml">Book</a> </li> <li> <a class="tours_Image" href="cambridge.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cambridgeshire.jpg" width="126" height="71" alt="BBC Radio Cambridgeshire"/></a> <div class="tours_listItem"><p><a href="cambridge.shtml">BBC Radio Cambridgeshire</a></p><p>Cambridge</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="cambridge.shtml">Book</a> </li> <li> <a class="tours_Image" href="cornwall.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cornwall.jpg" width="126" height="71" alt="BBC Cornwall"/></a> <div class="tours_listItem"><p><a href="cornwall.shtml">BBC Radio Cornwall</a></p><p>Truro</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="cornwall.shtml">Book</a> </li> <li> <a class="tours_Image" href="coventry.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cov.jpg" width="126" height="71" alt="BBC Coventry and Warwickshire"/></a> <div class="tours_listItem"><p><a href="coventry.shtml">BBC Coventry & Warwickshire</a></p><p>Coventry</p><p>Get an insight into the behind-the-scenes action that takes place at the station.</p></div> <a class="tours_bookNow" href="coventry.shtml">Book</a> </li> <li> <a class="tours_Image" href="lancs.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/lancs.jpg" width="126" height="71" alt="BBC Radio Lancashire"/></a> <div class="tours_listItem"><p><a href="lancs.shtml">BBC Radio Lancashire</a></p><p>Blackburn</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="lancs.shtml">Book</a> </li> <li> <a class="tours_Image" href="lincs.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/lincs.jpg" width="126" height="71" alt="BBC Radio Lincolnshire"/></a> <div class="tours_listItem"><p><a href="lincs.shtml">BBC Radio Lincolnshire</a></p><p>Lincoln</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="lincs.shtml">Book</a> </li> <li> <a class="tours_Image" href="northampton.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/northampton.jpg" width="126" height="71" alt="BBC Radio Northampton"/></a> <div class="tours_listItem"><p><a href="northampton.shtml">BBC Radio Northampton</a></p><p>Northampton</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="northampton.shtml">Book</a> </li> <li> <a class="tours_Image" href="notts.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/nottingham.jpg" width="126" height="71" alt="BBC Nottingham"/></a> <div class="tours_listItem"><p><a href="notts.shtml">BBC Nottingham</a></p><p>Nottingham</p><p>Get an insight into the behind-the-scenes action that takes place at BBC Radio Nottingham and East Midlands Today. </p></div> <a class="tours_bookNow" href="notts.shtml">Book</a> </li> <li> <a class="tours_Image" href="southwest.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/devon.jpg" width="126" height="71" alt="BBC South West"/></a> <div class="tours_listItem"><p><a href="southwest.shtml">BBC South West</a></p><p>Devon</p><p>Due to refurbishment, we are currently unable to offer tours at BBC South West in Plymouth. </p></div> <a class="tours_bookNow" href="southwest.shtml">More</a> </li> <li> <a class="tours_Image" href="stoke.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/stoke.jpg" width="126" height="71" alt="BBC Radio Stoke"/></a> <div class="tours_listItem"><p><a href="stoke.shtml">BBC Radio Stoke</a></p><p>Stoke-on-Trent</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="stoke.shtml">Book</a> </li> <li> <a class="tours_Image" href="suffolk.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/suffolk.jpg" width="126" height="71" alt="BBC Radio Suffolk"/></a> <div class="tours_listItem"><p><a href="suffolk.shtml">BBC Radio Suffolk</a></p><p>Ipswich</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="suffolk.shtml">Book</a> </li> <li> <a class="tours_Image" href="tees.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cleveland.jpg" width="126" height="71" alt="BBC Tees"/></a> <div class="tours_listItem"><p><a href="tees.shtml">BBC Tees</a></p><p>Middlesbrough</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="tees.shtml">Book</a> </li> </ul> </div> <div class="thin_lastListItem"> </div> <p class="to-top"><a href="#blq-content">To top</a></p> </div> <!-- end tours item --> <!-- start tours items --> <div class="toursItem"> <div class="toursItemTabs"> <ul class="topTabs"> <li><a href="#allTours" class="allTours_all">All tours</a></li> <li class="slctd"><a href="#england" class="allTours_eng">England</a></li> <li><a href="#northernIreland" class="allTours_ni">Northern Ireland</a></li> <li><a href="#scotland" class="allTours_sco">Scotland</a></li> <li><a href="#wales" class="allTours_cym">Wales</a></li> </ul> </div> <div class="tourItemHeader"><a name="england"></a><h2>All tours in England</h2></div> <div class="toursList"> <ul> <li> <a class="tours_Image" href="bh_london.shtml"><img src="https://web.archive.org/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126bh_2013.jpg" width="126" height="71" alt="Broadcasting House, London 漏 Jeff Overs"/></a> <div class="tours_listItem"><p><a href="bh_london.shtml">BBC Broadcasting House</a></p> <p>London W1</p><p>Enjoy a brand new tour of BBC Broadcasting House.</p></div> <a class="tours_bookNow" href="bh_london.shtml">Book</a> </li> <li> <a class="tours_Image" href="salford.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126salford.jpg" width="126" height="71" alt="BBC at MediaCityUK"/></a> <div class="tours_listItem"><p><a href="salford.shtml">BBC at MediaCityUK</a></p><p>Salford</p> <p>Join us on a tour of the BBC at MediaCityUK – the BBC's home in the North of England. </p> </div> <a class="tours_bookNow" href="salford.shtml">Book</a> </li> <li> <a class="tours_Image" href="salford_cbbc.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126salford_cbbc.jpg" width="126" height="71" alt="CBBC at MediaCityUK"/></a> <div class="tours_listItem"><p><a href="salford_cbbc.shtml">CBBC Tour at MediaCityUK</a></p><p>Salford</p> <p>For children aged 6 to 11 – see the home of programmes such as Blue Peter and Newsround. </p> </div> <a class="tours_bookNow" href="salford_cbbc.shtml">Book</a> </li> <li> <a class="tours_Image" href="televisioncentre.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/london_tvc.jpg" width="126" height="71" alt="BBC Television Centre"/></a> <div class="tours_listItem"><p><a href="televisioncentre.shtml">BBC Television Centre</a></p><p>London W12</p><p>Tours of Television Centre ceased on 22 February 2013.</p></div><a class="tours_bookNow" href="televisioncentre.shtml">More</a> </li> <li> <a class="tours_Image" href="birmingham.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/birmingham.jpg" width="126" height="71" alt="BBC Birmingham at the Mailbox"/></a> <div class="tours_listItem"><p><a href="birmingham.shtml">BBC Birmingham</a></p><p>Birmingham</p><p>Enjoy a tour of BBC Birmingham's home in The Mailbox.</p></div> <a class="tours_bookNow" href="birmingham.shtml">Book</a> </li> <li> <a class="tours_Image" href="bristol.shtml"><img src="https://web.archive.org/web/20130928095024im_/http://node1.bbcimg.co.uk/showsandtours/assets/images/toursThumbs/bristol.jpg" width="126" height="71" alt="BBC Bristol"/></a> <div class="tours_listItem"><p><a href="bristol.shtml">BBC Bristol</a></p><p>Bristol</p><p>Enjoy a tour of BBC Broadcasting House, Bristol.</p></div> <a class="tours_bookNow" href="bristol.shtml">Book</a> </li> <li> <a class="tours_Image" href="norwich.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/norwich.jpg" width="126" height="71" alt="BBC Norwich"/></a> <div class="tours_listItem"><p><a href="norwich.shtml">BBC Norwich</a></p><p>Norwich</p><p>See behind the scenes of the BBC in Norwich.</p></div> <a class="tours_bookNow" href="norwich.shtml">Book</a> </li> <li> <a class="tours_Image" href="cambridge.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cambridgeshire.jpg" width="126" height="71" alt="BBC Radio Cambridgeshire"/></a> <div class="tours_listItem"><p><a href="cambridge.shtml">BBC Radio Cambridgeshire</a></p><p>Cambridge</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="cambridge.shtml">Book</a> </li> <li> <a class="tours_Image" href="cornwall.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cornwall.jpg" width="126" height="71" alt="BBC Cornwall"/></a> <div class="tours_listItem"><p><a href="cornwall.shtml">BBC Radio Cornwall</a></p><p>Truro</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="cornwall.shtml">Book</a> </li> <li> <a class="tours_Image" href="coventry.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cov.jpg" width="126" height="71" alt="BBC Coventry and Warwickshire"/></a> <div class="tours_listItem"><p><a href="coventry.shtml">BBC Coventry & Warwickshire</a></p><p>Coventry</p><p>Get an insight into the behind-the-scenes action that takes place at the station.</p></div> <a class="tours_bookNow" href="coventry.shtml">Book</a> </li> <li> <a class="tours_Image" href="lancs.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/lancs.jpg" width="126" height="71" alt="BBC Radio Lancashire"/></a> <div class="tours_listItem"><p><a href="lancs.shtml">BBC Radio Lancashire</a></p><p>Blackburn</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="lancs.shtml">Book</a> </li> <li> <a class="tours_Image" href="lincs.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/lincs.jpg" width="126" height="71" alt="BBC Radio Lincolnshire"/></a> <div class="tours_listItem"><p><a href="lincs.shtml">BBC Radio Lincolnshire</a></p><p>Lincoln</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="lincs.shtml">Book</a> </li> <li> <a class="tours_Image" href="newcastle.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/newcastle.jpg" width="126" height="71" alt="BBC Newcastle"/></a> <div class="tours_listItem"><p><a href="newcastle.shtml">BBC Newcastle</a></p><p>Newcastle upon Tyne</p><p>Get an insight into the behind-the-scenes action that takes place at BBC Radio Newcastle and Look North. </p></div> <a class="tours_bookNow" href="newcastle.shtml">Book</a> </li> <li> <a class="tours_Image" href="northampton.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/northampton.jpg" width="126" height="71" alt="BBC Radio Northampton"/></a> <div class="tours_listItem"><p><a href="northampton.shtml">BBC Radio Northampton</a></p><p>Northampton</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="northampton.shtml">Book</a> </li> <li> <a class="tours_Image" href="notts.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/nottingham.jpg" width="126" height="71" alt="BBC Nottingham"/></a> <div class="tours_listItem"><p><a href="notts.shtml">BBC Nottingham</a></p><p>Nottingham</p><p>Get an insight into the behind-the-scenes action that takes place at BBC Radio Nottingham and East Midlands Today. </p></div> <a class="tours_bookNow" href="notts.shtml">Book</a> </li> <li> <a class="tours_Image" href="southwest.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/devon.jpg" width="126" height="71" alt="BBC South West"/></a> <div class="tours_listItem"><p><a href="southwest.shtml">BBC South West</a></p><p>Devon</p><p>Due to refurbishment, we are currently unable to offer tours at BBC South West in Plymouth. </p></div> <a class="tours_bookNow" href="southwest.shtml">More</a> </li> <li> <a class="tours_Image" href="stoke.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/stoke.jpg" width="126" height="71" alt="BBC Radio Stoke"/></a> <div class="tours_listItem"><p><a href="stoke.shtml">BBC Radio Stoke</a></p><p>Stoke-on-Trent</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="stoke.shtml">Book</a> </li> <li> <a class="tours_Image" href="suffolk.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/suffolk.jpg" width="126" height="71" alt="BBC Radio Suffolk"/></a> <div class="tours_listItem"><p><a href="suffolk.shtml">BBC Radio Suffolk</a></p><p>Ipswich</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="suffolk.shtml">Book</a> </li> <li> <a class="tours_Image" href="tees.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/cleveland.jpg" width="126" height="71" alt="BBC Tees"/></a> <div class="tours_listItem"><p><a href="tees.shtml">BBC Tees</a></p><p>Middlesbrough</p><p>Get an insight into the behind-the-scenes action that takes place at the station. </p></div> <a class="tours_bookNow" href="tees.shtml">Book</a> </li> </ul> </div> <div class="thin_lastListItem"> </div> <p class="to-top"><a href="#blq-content">To top</a></p> </div> <!-- end tours item --> <!-- start tours items --> <div class="toursItem"> <div class="toursItemTabs"> <ul class="topTabs"> <li><a href="#allTours" class="allTours_all">All tours</a></li> <li><a href="#england" class="allTours_eng">England</a></li> <li class="slctd"><a href="#northernIreland" class="allTours_ni">Northern Ireland</a></li> <li><a href="#scotland" class="allTours_sco">Scotland</a></li> <li><a href="#wales" class="allTours_cym">Wales</a></li> </ul> </div> <div class="tourItemHeader"><a name="northernIreland"></a><h2>All tours in Northern Ireland</h2></div> <div class="toursList"> <ul> <li> <a class="tours_Image" href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/belfast.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126belfast_2012.jpg" width="126" height="71" alt="BBC Northern Ireland"/></a> <div class="tours_listItem"><p><a href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/belfast.shtml">BBC Northern Ireland</a></p><p>Belfast</p><p>A tour of BBC Broadcasting House provides a unique opportunity to go behind the scenes at BBC Northern Ireland. </p></div> <a class="tours_bookNow" href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/showsandtours/tours/belfast.shtml">Book</a> </li> </ul> </div> <div class="thin_lastListItem"> </div> <p class="to-top"><a href="#blq-content">To top</a></p> </div> <!-- end tours item --> <!-- start tours items --> <div class="toursItem"> <div class="toursItemTabs"> <ul class="topTabs"> <li><a href="#allTours" class="allTours_all">All tours</a></li> <li><a href="#england" class="allTours_eng">England</a></li> <li><a href="#northernIreland" class="allTours_ni">Northern Ireland</a></li> <li class="slctd"><a href="#scotland" class="allTours_sco">Scotland</a></li> <li><a href="#wales" class="allTours_cym">Wales</a></li> </ul> </div> <div class="tourItemHeader"><a name="scotland"></a><h2>All tours in Scotland</h2></div> <div class="toursList"> <ul> <li> <a class="tours_Image" href="pacificquay.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/pacificquay.jpg" width="126" height="71" alt="BBC Scotland at Pacific Quay"/></a> <div class="tours_listItem"><p><a href="pacificquay.shtml">BBC Scotland, Pacific Quay</a></p><p>Glasgow</p><p>Enjoy a behind the scenes tour of BBC Scotland's new headquarters. </p></div> <a class="tours_bookNow" href="pacificquay.shtml">Book</a> </li> <li> <a class="tours_Image" href="rivercity.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/rivercity.jpg" width="126" height="71" alt="BBC Scotland, River City"/></a> <div class="tours_listItem"><p><a href="rivercity.shtml">BBC Scotland, River City</a></p><p>Dumbarton</p><p>Go behind the scenes of the set of River City, set in the fictional urban neighbourhood of Shieldinch in Glasgow. </p></div> <a class="tours_bookNow" href="rivercity.shtml">Book</a> </li> </ul> </div> <div class="thin_lastListItem"> </div> <p class="to-top"><a href="#blq-content">To top</a></p> </div> <!-- end tours item --> <!-- start tours items --> <div class="toursItem"> <div class="toursItemTabs"> <ul class="topTabs"> <li><a href="#allTours" class="allTours_all">All tours</a></li> <li><a href="#england" class="allTours_eng">England</a></li> <li><a href="#northernIreland" class="allTours_ni">Northern Ireland</a></li> <li><a href="#scotland" class="allTours_sco">Scotland</a></li> <li class="slctd"><a href="#wales" class="allTours_cym">Wales</a></li> </ul> </div> <div class="tourItemHeader"><a name="wales"></a><h2>All tours in Wales</h2></div> <div class="toursList"> <ul> <li> <a class="tours_Image" href="cardiff.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126cardiff.jpg" width="126" height="71" alt="BBC Cymru Wales"/></a> <div class="tours_listItem"><p><a href="cardiff.shtml">BBC Cymru Wales</a></p><p>Cardiff</p><p>Enjoy a tour of BBC Cymru Wales's headquarters in Llandaff, Cardiff.</p></div> <a class="tours_bookNow" href="cardiff.shtml">Book</a> </li> <li> <a class="tours_Image" href="cymru_caerdydd.shtml"><img src="/web/20130928095024im_/http://www.bbc.co.uk/showsandtours/assets/images/toursThumbs/126cardiff.jpg" width="126" height="71" alt="BBC Cymru Wales"/></a> <div class="tours_listItem"><p><a href="cymru_caerdydd.shtml">BBC Cymru Wales (Welsh-language tour)</a></p><p>Cardiff</p><p>Enjoy a Welsh-language tour of BBC Cymru Wales's headquarters in Llandaff, Cardiff.</p></div> <a class="tours_bookNow" href="cymru_caerdydd.shtml">Book</a> </li> </ul> </div> <div class="thin_lastListItem"> </div> <p class="to-top"><a href="#blq-content">To top</a></p> </div> <!-- end tours item --> </div> </div> <!-- END MAIN CONTENT --> </div> </div> </div> <div id="blq-mast" class="blq-rst blq-default-worldwide blq-new-nav" lang="en-GB"> <div id="blq-sign-in"> </div> <form method="get" id="blq-search-form" action="https://web.archive.org/web/20130928095024/http://search.bbc.co.uk/search" accept-charset="utf-8"> <p id="blq-nav-search"> <input type="hidden" name="go" value="toolbar"/> <input type="hidden" name="uri" value="/showsandtours/tours/"/> <label for="blq-search" class="blq-hide">Search term:</label> <input id="blq-search" type="text" name="q" value="" maxlength="128"/> <input id="blq-search-btn" type="submit" value="Search"/> </p> </form> <h2 class="blq-hide">bbc.co.uk navigation</h2> <ul id="blq-nav-main"> <li id="blq-nav-n"><a href="https://web.archive.org/web/20130928095024/http://www.bbc.com/news/" hreflang="en-GB">News</a></li> <li id="blq-nav-s"><a href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/sport/" hreflang="en-GB">Sport</a></li> <li id="blq-nav-w"><a href="https://web.archive.org/web/20130928095024/http://www.bbc.co.uk/weather/" hreflang="en-GB">Weather</a></li> <li id="blq-nav-tr"> <a href="https://web.archive.org/web/20130928095024/http://www.bbc.com/capital/" hreflang="en-GB">Capital</a> </li> <li id="blq-nav-t"><a href="/web/20130928095024/http://www.bbc.co.uk/tv/" hreflang="en-GB">TV</a></li> <li id="blq-nav-r"><a href="/web/20130928095024/http://www.bbc.co.uk/radio/" hreflang="en-GB">Radio</a></li> <li id="blq-nav-m"><a href="#blq-nav">More…</a></li> </ul> </div> <div id="blq-nav" class="blq-blue"> <div id="blq-nav-links" class="blq-clearfix" lang="en-GB"> <div id="blq-nav-links-inner"> <ul class="blq-nav-sub blq-first"> <li><a href="/web/20130928095024/http://www.bbc.co.uk/cbbc/">CBBC</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/cbeebies/">CBeebies</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/comedy/">Comedy</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/food/">Food</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/history/">History</a></li> </ul> <ul class="blq-nav-sub"> <li><a href="/web/20130928095024/http://www.bbc.co.uk/learning/">Learning</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/music/">Music</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/science/">Science</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/nature/">Nature</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/local/">Local</a></li> </ul> <ul class="blq-nav-sub blq-last"> <li><a href="/web/20130928095024/http://www.bbc.co.uk/northernireland/">Northern Ireland</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/scotland/">Scotland</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/wales/">Wales</a></li> <li id="blq-az"><a href="/web/20130928095024/http://www.bbc.co.uk/a-z/">Full A-Z<span class="blq-hide"> of BBC sites</span></a></li> </ul> </div> </div> </div> <!--[if IE 6]> <div id="blq-ie6-upgrade"> <p> <span>You're using the Internet Explorer 6 browser to view the BBC website. Our site will work much better if you change to a more modern browser. It's free, quick and easy.</span> <a href="http://www.browserchoice.eu/">Find out more <span>about upgrading your browser</span> here…</a> </p> </div> <![endif]--> <div id="blq-foot" lang="en-GB" class="blq-rst blq-clearfix blq-foot-grey"> <div id="blq-footlinks"> <h2 class="blq-hide">BBC links</h2> <ul> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="https://web.archive.org/web/20130928095024/http://m.bbc.co.uk/">Mobile site</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/terms/">Terms of Use</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/aboutthebbc/">About the BBC</a></li> </ul> </li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="https://web.archive.org/web/20130928095024/http://advertising.bbcworldwide.com/">Advertise With Us</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/privacy/">Privacy</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul> </li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="/web/20130928095024/http://www.bbc.co.uk/bbc.com/ad-choices/">Ad Choices</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/privacy/bbc-cookies-policy.shtml">Cookies</a></li> <li><a href="/web/20130928095024/http://www.bbc.co.uk/contact/">Contact the BBC</a></li> </ul> </li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"> <li><a href="/web/20130928095024/http://www.bbc.co.uk/guidance/">Parental Guidance</a></li> </ul> </li> </ul> </div> <div id="blq-foot-blocks" class="blq-footer-image-light"><img src="https://web.archive.org/web/20130928095024im_/http://static.bbci.co.uk/frameworks/barlesque/2.51.6/desktop/2.8/img/blocks/light.png" width="84" height="24" alt="BBC"/></div> <p id="blq-disclaim"><span id="blq-copy">BBC © 2013</span> <a href="/web/20130928095024/http://www.bbc.co.uk/help/web/links/">The BBC is not responsible for the content of external sites. Read more.</a></p> <div id="blq-obit"><p><strong>This page is best viewed in an up-to-date web browser with style sheets (CSS) enabled. While you will be able to view the content of this page in your current browser, you will not be able to get the full visual experience. Please consider upgrading your browser software or enabling style sheets (CSS) if you are able to do so.</strong></p></div> </div> </div> <!-- BBCDOTCOM analytics template:server-side journalismVariant: false ipIsAdvertiseCombined: true adsEnabled: true showDotcom: true flagpole: ON --> <script type="text/javascript"> /*<![CDATA[*/ if('undefined' != typeof(bbcdotcom) && 'undefined' != typeof(bbcdotcom.stats)) { bbcdotcom.stats.contentType = "HTML"; } /*]]>*/ </script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://js.revsci.net/gateway/gw.js?csid=J08781"></script> <script type="text/javascript"> DM_tag(); </script> <!-- SiteCatalyst code version: H.21. Copyright 1996-2010 Adobe, Inc. All Rights Reserved More info available at http://www.omniture.com --> <script type="text/javascript"> var s_account = "bbcwglobalprod"; </script> <script type="text/javascript" src="https://web.archive.org/web/20130928095024js_/http://static.bbci.co.uk/bbcdotcom/0.3.204/script/s_code.js"></script> <script type="text/javascript"><!-- /* You may give each page an identifying name, server, and channel on the next lines. */ /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/ var s_code=scw.t();if(s_code)document.write(s_code)//--></script> <noscript><div><a href="https://web.archive.org/web/20130928095024/http://www.omniture.com/" title="Web Analytics"><img src="https://web.archive.org/web/20130928095024im_/http://sa.bbc.com/b/ss/bbcwglobalprod/1/H.21--NS/0" height="1" width="1" alt=""/></a></div></noscript><!--/DO NOT REMOVE/--> <!-- End SiteCatalyst code version: H.21. --> <!-- Begin comScore Tag --> <script type="text/javascript"> document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://web.archive.org/web/20130928095024/https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));</script> <script type="text/javascript"> /*<![CDATA[*/ COMSCORE.beacon({ c1:2, c2:"6035051", c3:"", c4:"127.0.0.1:8888/showsandtours/tours/", c5:"", c6:"", c15:"" }); /*]]>*/ </script> <noscript> <div> <img src="https://web.archive.org/web/20130928095024im_/http://b.scorecardresearch.com/b?c1=2&c2=6035051&c3=&c4=127.0.0.1:8888/showsandtours/tours/&c5=&c6=&c15=&cv=1.3&cj=1" style="display:none" width="0" height="0" alt=""/> </div> </noscript> <!-- End comScore Tag --> <!-- START Nielsen Online SiteCensus V6.0 --> <!-- COPYRIGHT 2010 Nielsen Online --> <script type="text/javascript"> /*<![CDATA[*/ (function () { var d = new Image(1, 1); d.onerror = d.onload = function () { d.onerror = d.onload = null; }; d.src = [('https:' == document.location.protocol ? 'https:' : 'http:') + "//web.archive.org/web/20130928095024/http://secure-us.imrworldwide.com/cgi-bin/m?ci=us-804789h&cg=0&cc=1&si=", escape(window.location.href), "&rp=", escape(document.referrer), "&ts=compact&rnd=", (new Date()).getTime()].join(''); })(); /*]]>*/ </script> <noscript> <div> <img src="https://web.archive.org/web/20130928095024im_/http://secure-us.imrworldwide.com/cgi-bin/m?ci=us-804789h&cg=0&cc=1&ts=noscript" width="1" height="1" alt=""/> </div> </noscript> <!-- END Nielsen Online SiteCensus V6.0 --> <!-- Effective Measure BBCCOM-1195 --> <script type="text/javascript"> /*<![CDATA[*/ (function() { var em = document.createElement('script'); em.type = 'text/javascript'; em.async = true; em.src = ('https:' == document.location.protocol ? 'https://web.archive.org/web/20130928095024/https://me-ssl' : 'https://web.archive.org/web/20130928095024/http://me-cdn') + '.effectivemeasure.net/em.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(em, s); })(); /*]]>*/ </script> <noscript> <div> <img src="https://web.archive.org/web/20130928095024im_/http://me.effectivemeasure.net/em_image" alt="" style="position:absolute; left:-5px;"/> </div> </noscript> <!-- End Effective Measure --> </div> <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementById('blq-main') }); istats.track('download', { region: document.getElementById('blq-main') }); }); } </script> <script type="text/javascript"> pulse.init( 'tours', false ); </script> </body> </html> <!-- FILE ARCHIVED ON 09:50:24 Sep 28, 2013 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 21:58:38 Dec 04, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.53 exclusion.robots: 0.028 exclusion.robots.policy: 0.018 esindex: 0.009 cdx.remote: 22.126 LoadShardBlock: 90.5 (3) PetaboxLoader3.datanode: 101.961 (4) load_resource: 131.55 PetaboxLoader3.resolve: 74.955 -->