<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>BBC - BBC Comedy Blog</title><style type="text/css">
        #archive-mothballed-message a:hover span {
            text-decoration:underline;
        }
        #blq-container #archived-mothball-message a {
            padding-left:250px;
            padding-top:17px;
            background-position: 180px 10px;
        }
        #ttd-masthead #archived-mothball-message a {
            padding-left:250px;
            padding-top:17px;
            background-position: 180px 10px;
        }
        #k-masthead-container #archived-mothball-message a {
            padding-left:250px;
            padding-top:17px;
            background-position: 180px 10px;
        }
        #archived-mothball-message a {
            display:block;
            height:56px;
            background:url(/globalresources/mothball-images/i.gif)
                100px 10px no-repeat;
            color:#666;
            text-decoration:none;
            padding-left:160px;
            padding-top:12px;
            font-size:20px;
            font-family: verdana,helvetica,arial,sans-serif;
            font-weight: normal;
        }
    </style><meta name="description" content="Funny stuff from the heart of the BBC Comedy Department."><meta name="keywords" content="comedy, funny, bbc, sitcom, sketch, news, blog"><meta name="DCTERMS.created" content="2009-01-27T12:00:00Z"><meta name="DCTERMS.modified" content="2012-11-22T15:51+0:00"><!-- Turn on Identity --><!-- Glow cachebust:    
                --><!-- Survey cachebust:                    --><!-- Barlesque 2.72.5 --><link rel="schema.dcterms" href="https://purl.org/dc/terms/"><link rel="index" href="https://nontonwae.pages.dev/a-z/" title="A to Z"><link rel="copyright" href="https://nontonwae.pages.dev/terms/" title="Terms of Use"><link rel="icon" href="https://nontonwae.pages.dev/favicon.ico" type="image/x-icon"><meta name="viewport" content="width = 974"><link rel="stylesheet" type="text/css" href="/staticarchive/c808749ad4d537416e40591def8e05c130d72722.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);var overrides=window.bbccookies.get().match(/ckns_mandolin_setSegments=([^;]+)/);if(overrides!==null){eval("overrides = "+decodeURIComponent(RegExp.$1)+";");if(overrides[this._id]&&this._segmentSet.indexOf(overrides[this._id])==-1){throw new Error("Invalid Override: overridden segment should exist in segments array")}}if(overrides!==null&&overrides[this._id]){this._segment=overrides[this._id]}else{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){validateCookieName(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+"="+encodeURIComponent(serialise(data))+"; expires="+getLastExpirationDate(data).toUTCString()+";")};window.bbc.Mandolin.Storage.prototype.readCookie=function(name){var nameEq=name+"=",ca=window.bbccookies.get().split("; "),i,c;validateCookieName(name);for(i=0;i<ca.length;i++){c=ca[i];if(c.indexOf(nameEq)===0){return decodeURIComponent(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()+'"')+","}}return str.replace(/,\}/g,"}").replace(/,$/g,"")}function deserialise(str){var o;str="{"+str+"}";if(!validateSerialisation(str)){throw"Invalid input provided for deserialisation."}eval("o = "+str);return o}var validateSerialisation=(function(){var OBJECT_TOKEN="<Object>",ESCAPED_CHAR='"\\n\\r\\u2028\\u2029\\u000A\\u000D\\u005C',ALLOWED_CHAR="([^"+ESCAPED_CHAR+"]|\\\\["+ESCAPED_CHAR+"])",KEY='"'+ALLOWED_CHAR+'+"',VALUE='(null|"'+ALLOWED_CHAR+'*"|'+OBJECT_TOKEN+")",KEY_VALUE=KEY+":"+VALUE,KEY_VALUE_SEQUENCE="("+KEY_VALUE+",)*"+KEY_VALUE,OBJECT_LITERAL="({}|{"+KEY_VALUE_SEQUENCE+"})",objectPattern=new RegExp(OBJECT_LITERAL,"g");return function(str){if(str.indexOf(OBJECT_TOKEN)!==-1){return false}while(str.match(objectPattern)){str=str.replace(objectPattern,OBJECT_TOKEN)}return str===OBJECT_TOKEN}})();function validateCookieName(name){if(name.match(/ ,;/)){throw"Illegal name provided, must be valid in browser cookie."}}})(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies_flag === 'undefined') { bbccookies_flag = 'ON'; } showCTA_flag = true; 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://static.bbci.co.uk/frameworks/bbccookies/0.6.6/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://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script><script type="text/javascript" src="https://node1.bbcimg.co.uk/glow/gloader.0.1.6.js"></script><script type="text/javascript" src="/staticarchive/21f604032d29edfa0a166f89bd41c95004718ed2.js"></script><script type="text/javascript">  bbcRequireMap = {"jquery-1":"/staticarchive/6cabfa9be6f12b6fec5ddf61c2dca1dde868555e", "jquery-1.4":"/staticarchive/cce0a0919c693f9473535d6941613bad16a4b40f", "jquery-1.9":"/staticarchive/14a082a42c1074b40bedae2666d3204e142899f5", "swfobject-2":"/staticarchive/b02e05aa3b12cfe8510390c7eccecd0af315b0a6", "demi-1":"/staticarchive/a916559c328a465dafcc30056734651ac8fdbb4b", "gelui-1":"/staticarchive/0159feca9179b145c659298e302b55dc76dfa15d", "cssp!gelui-1/overlay":"/staticarchive/fee6b4a3b22c51a59dd3ddebfb1b765049c683f6.css", "istats-1":"/staticarchive/b2d7be33eb67fa4b938cfa94238f8af9e929e4ae", "relay-1":"/staticarchive/ab39b61cf0980994246594bebe70fe460df87a42", "clock-1":"/staticarchive/7b8bb05c3fa19067c2c4c99144d21702cc15704f", "canvas-clock-1":"/staticarchive/703fd8b8a1b4ecf9cf624195bfb9691c648d3919", "cssp!clock-1":"/staticarchive/85ca997ae2f6bd2990765422dcc5b1c386c9d0cb.css", "jssignals-1":"/staticarchive/238f1d675d1626860f85815b7ab638cd41811a06", "jcarousel-1":"/staticarchive/3b38690b91f14468826c5f05f6e3da9beb55f4b1", "bump-3":"//emp.bbci.co.uk/emp/bump-3/bump-3.js", "gelui-1/widget": "/staticarchive/fcf01fd866ac629bad5a92592c208c3b04184cd3", "gelui-1/carousel": "/staticarchive/562f83c33cfe04062d95de8024ba03636cd0af4c", "gelui-1/core": "/staticarchive/d69cc93987af4e17f910996164dc15516614353e", "gelui-1/overlay": "/staticarchive/84bd061f5e14f0728caa8c933fe6d758b54fec5a", "gelui-1/autosuggest": "/staticarchive/ca81d8400ee443b0c31a47f1eea1c6872091dd48"}; require({ baseUrl: 'https://'+location.host+'/', 'dynamicServer': 'https://id.bbc.co.uk', 'secureServer': 'https://id.bbc.co.uk', 'assetVersion': '3.27.2', 'assetPath': 'https://static.bbci.co.uk/modules/identity/statusbar/3.27.2/' }; </script><script type="text/javascript" src="/staticarchive/1333b9944bd6388f9645c37cab1e3a1d9ac83b90.js"></script><script type="text/javascript" src="/staticarchive/fbe86a6c073f48f146a72f3e858ac837debcd84a.js"></script><script type="text/javascript">/*<![CDATA[*/ window.pulse = { init: function(){/*stub*/} }; if (!window.oqs || oqs.usePulse) { document.write('<script type="text/javascript" src="https://static.bbci.co.uk/frameworks/pulsesurvey/0.10.2/script/pulse.js"><'+'/script>'); document.write('<script type="text/javascript" src="https://nontonwae.pages.dev/survey/pulse/conf.js"><'+'/script>'); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ pulse.translations = { intro: 'We are always looking to improve the site and your opinions count.', question: 'Do you have a few minutes to tell us what you think about this site?', accept: 'Yes', reject: 'No' };  /*]]>*/</script><link rel="stylesheet" href="/staticarchive/5afe8a4179e3eab83e2e21c26b5a7e6cf645b376.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(https://static.bbci.co.uk/frameworks/pulsesurvey/0.10.2/img/pulse_bg.gif) no-repeat} .pulse-pop #pulse-a{background:url(https://static.bbci.co.uk/frameworks/pulsesurvey/0.10.2/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"> /* <![CDATA[ */ define('id-statusbar-config', { 'translation_signedout': "Sign in", 'translation_signedin': "Your account", 'use_overlay' : false, 'signin_url' : "https://ssl.bbc.co.uk/id/signin", 'locale' : "en-GB", 'policyname' : "", 'ptrt' : "https://nontonwae.pages.dev/" }); /* ]]> */ </script><script type="text/javascript"> (function () { if (! window.require) { throw new Error('idcta: could not find require'); } var map = {}; map['idapp-1'] = 'https://static.bbci.co.uk/idapp/0.63.23/modules/idapp/idapp-1'; map['idcta/idcta-1'] = 'https://static.bbci.co.uk/id/0.23.4/modules/idcta/idcta-1'; require({paths: map}); define('id-config', {"idapp":{"version":"0.63.23","hostname":"ssl.bbc.co.uk","insecurehostname":"www.bbc.co.uk","tld":"bbc.co.uk"},"idtranslations":{"version":"0.29.1"},"identity":{"baseUrl":"https:\/\/talkback.live.bbc.co.uk\/identity"},"pathway":{"name":null,"staticAssetUrl":"http:\/\/static.bbci.co.uk\/idapp\/0.63.23\/modules\/idapp\/idapp-1\/View.css"}}); })(); </script><link rel="alternate" type="application/atom+xml" title="Atom" href="https://nontonwae.pages.dev/blogs/comedy/atom.xml"><link rel="alternate" type="application/rss+xml" title="RSS" href="https://nontonwae.pages.dev/blogs/comedy/rss.xml"><!-- Comments Module Static Assets --><link rel="stylesheet" rev="stylesheet" href="/staticarchive/b171f6295dafa594e000486294caf5ef2e356648.css"><script src="/staticarchive/9fded8c38030f7e4fa43d9cc9c0033b2315234ef.js" type="text/javascript"></script><!--[if lte IE 7]> <link rel="stylesheet" rev="stylesheet" href="https://static.bbci.co.uk/modules/comments/2.6.19/css/comments-ie6-7.css"/> <![endif]--><style type="text/css">
	@import '/staticarchive/6e19cb98ed19c044c78020031b13199c99fa7633.css';
</style><!--[if lte IE 7]>
<style type="text/css">
	@import '/guidance/style/pg_external_ie.css?r895178';
</style>
<![endif]--><!--[if IE 6]>
<style type="text/css">
	@import '/guidance/style/pg_external_ie6.css?r895178';
</style>
<![endif]--><script type="text/javascript" src="https://nontonwae.pages.dev/guidance/script/js/pg-gb.js?r1112733"></script><script type="text/javascript" src="/staticarchive/296b7e9b01b56142aec1bfa4760e2eb86073b802.js"></script><script type="text/javascript" src="/staticarchive/880927e055ea2d75cc32254b7274b0e4a04822c2.js"></script><link rel="stylesheet" href="/staticarchive/3c2b27e8596edca82a396f84e4c6a991b49acc9e.css" type="text/css"><link rel="stylesheet" href="/staticarchive/3f22e626d9c302da131c20df3cd9b6fe5bc59b92.css" type="text/css"><script type="text/javascript" src="https://nontonwae.pages.dev/dnaimages/components/commentbox/gloader/commentbox.js"></script><script type="text/javascript" src="https://nontonwae.pages.dev/glow/gloader.js"></script><script type="text/javascript">
    gloader.load(
        ["glow", "1", "glow.net"],
        {
            async: true,
            onLoad: function(glow) {
				if (window.dna) {
					glow.ready(function(){
						
						dna.lang.register(glow);
					})
				}
				if (typeof identity !== 'undefined') {
					glow.events.addListener(identity,'login',function(){
						window.location.reload();
					});
				}
            }
        }
    );
</script><style type="text/css">
	#dna_commentbox_holder{display: block;}
	#dna_commentbox_holder_error{display: none;}
</style><!-- DNA Comments --><link rel="stylesheet" media="screen" href="/staticarchive/8db1272f67d2a84959a2f118e59c89632f24e33f.css" type="text/css"><!-- /DNA Comments --><link rel="stylesheet" href="/staticarchive/c0536c954e5c6e7cf6d1f306b35d3769a504eb09.css" type="text/css"><!-- If Opt Out code --><!-- End If Opt Out code --><script type="text/javascript" src="/staticarchive/83f5bedfaaaae12a1220a872db0629fb6b14a507.js"></script></head><body class="teal blogs bbc-comedy-blog">
                <script type="text/javascript">/*<![CDATA[*/ bbcFlagpoles_istats = 'ON'; istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=SET-COUNTER&app_type=web&ml_name=SSI&ml_version=0.23.0&language=en-GB'; /*]]>*/</script><script type="text/javascript" src="https://static.bbci.co.uk/archive_stats/modules/stats-1.0.0.js"></script>    <div id="blq-container" class="blq-lang-en-GB blq-gvl-2-8 blq-id-identitystatusbar"> <div id="blq-pre-mast" lang="en-GB"> <!-- Pre mast -->  </div>  <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <div id="bbccookies-prompt" class="bbccookies-d"> <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="/" hreflang="en-GB"> <span id="blq-blocks-wrapper"> <span class="blq-home">British Broadcasting Corporation</span><img src="/staticarchive/2e00d1d53e9c3bd91993196aa19a1d88589969f0.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="/accessibility/">Accessibility Help</a></li>   </ul></div>   <div id="archived-mothball-message" style="
            background:url(/globalresources/mothball-images/bg.jpg)
                        0 0 repeat-x #fbfbfb;
    ">
        <a href="/globalresources/mothballing" style="

        ">
            This page has been archived and is no longer updated.
            <span style="
                display:block;
                font-size:0.5em;
                padding:10px 0 0 70px;
                font-weight:bold;
            ">
                <span style="
                color:#1A75BB; margin-left:100px;
                ">Find out more about page archiving.</span>
            </span>
        </a>
    </div><div id="blq-main" class="blq-clearfix">        

<div id="blq-content">

<div id="image">
	<a href="https://nontonwae.pages.dev/blogs/comedy/" title="BBC Comedy Blog home" class="blog-home-link">
         	
        </a>
<div id="blq-local-nav">
	<div class="cdy-nav-main">			
		<ul><li><a href="/comedy/"><img src="/staticarchive/92c3489da8f42a72e8e4c7eeec187e39f3bb4832.png" alt="Home"></a></li>
			<li><a href="/comedy/clips/by/all/"><img src="/staticarchive/38faeacc0f9beb615294540d4025b6b67eaadd7d.png" alt="Clips"></a></li>
			<li><a href="/comedy/collections/"><img src="/staticarchive/2ee47c71d06fe7e0ab45f2c54944717482196d2a.png" alt="Collections"></a></li>
			<li><a href="/blogs/comedy/"><img src="/staticarchive/267cac57e855bde772599e7e034dc97740bc2455.png" class="selected" alt="Blog"></a></li>
			<!-- <li><a href="/programmes/genres/comedy"><img src="/comedy/forge-assets/extra/images/navigation/nav-main-5.png" alt="TV & Radio Comedy" /></a></li> -->
			<li><a href="/comedy/browse"><img src="/staticarchive/c4d8492ba7206fd8703b868c6faeb9403b0ba4ac.png" alt="Browse"></a></li>
		</ul></div>
</div>
<div class="cleardiv"><!-- clearing --></div>
</div>

<script type="text/javascript" src="/glow/gloader.js"></script><script type="text/javascript">
gloader.load(["glow", "1", "glow.dom", "glow.events"]);
</script><script type="text/javascript" src="/staticarchive/ed67392036a101efa00bfd4ff055ee298d81f67a.js"></script><!--main content starts here--><div id="content">  
  <div class="main content">	
	<!--contents starts here-->
	<div class="content-left">		
			
			    <div class="post" id="entry-310964">
	<h2><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/radio-4s-beauty-olonga.shtml" rel="bookmark">Radio 4's Beauty Olonga </a></h2>

	<div class="meta">	
		<div class="flt-r" style="width:180px">
			
				<p style="text-align:right"><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/radio-4s-beauty-olonga.shtml" title="Comments made about this entry." rel="comments">Comments 
(2)





</a></p>
			 
				
				<div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light">
					<a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fcomedy%2F2012%2F08%2Fradio-4s-beauty-olonga.shtml&amp;appId=news">Share this page</a>
				</div>
			 
		</div>
		
		<div style="float:left; width:420px">
		
				
			<p class="categories">Post categories: <a href="https://nontonwae.pages.dev/blogs/comedy/interviews/" rel="tag" title="">interviews</a><span class="delimiter">, </span><a href="https://nontonwae.pages.dev/blogs/comedy/radio/" rel="tag" title="">radio</a><span class="delimiter">, </span><a href="https://nontonwae.pages.dev/blogs/comedy/radio/radio-4/" rel="tag" title="">radio 4</a>			
			</p>
			
		
			<p class="flt-l ">
				
				<span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/candice_lo/">Candice Lo</a></span> <span class="separator">|</span> <abbr class="published" title="2012-08-28T09:53:42+00:00">09:53 UK time, Tuesday, 28 August 2012</abbr>
			</p>
		</div>
		<div class="cleardiv"><!-- clearing --></div>
	</div>
	
	<div class="post_content">
		
			<div class="imgCaptionCenter" style="text-align: center; display: block; ">
<img alt="Jocelyn Jee Esien as Beauty Olonga" src="/staticarchive/8131b35e62eb89255229330eb5d201e395927fe7.jpg" width="512" height="341" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:512px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Jocelyn Jee Esien as Beauty Olonga </p></div>

<p>Radio 4's comedy, <a href="https://nontonwae.pages.dev/programmes/b0100t05">Beauty of Britain</a>, is about a woman called Beauty Olonga, who works as a carer and sees herself as an inspiration to other young African women in Britain. Here she tells us more about her show.</p>

<p>"One of the people in charge at Radio 4 asked me to tell you about my new series. She said she would do it herself only she's not very good at 'writing-ey type stuff' and she's got a wedding to go to.</p>

<p>"I could tell she was important because she had a little fold-up bicycle and she only goes into the office two days a week. Since coming to this country to work as a carer, I have learnt to recognise how much power someone has by how small their bike is, how long their holidays are and how much extra work they ask you to do for nothing.</p>

<p>"The British also expect you to compliment them on their sense of humour - like when those elderly gentlemen sang about 'My generation' on TV the other night. But I've noticed that although they like to laugh they don't want to make eye contact. I think that's why Radio 4 is such an important part of their culture.</p>

<p>"A lot of the elderly people I look after have a machine on the bedside table that suddenly starts playing Radio 4 at 6.15 in the morning while, at the same time, squirting them with steam and boiling tea - that fantastic sense of humour again!</p>

<p>"Radio 4 normally starts the day with three hours of high-status men shouting at each other. Sometimes you can hear the velcro tearing on their cycling anklets when they get really worked up. Most of my clients like to shout back at the radio, especially when a man called Gary Richardson is on.  The elderly women I look after tend to get very annoyed when Kirsty Young starts talking. Personally I can't see anything to complain about with Kirsty - okay, she lost her professionalism when Morrissey was her guest but I've seen a photo of her in Asda Shopper magazine and she is the only Radio 4 presenter who takes the trouble to do her highlights properly.</p>

<p>"If you are an African girl working as a carer you will pick up plenty of top tips from my new series;  from how to upstyle your tabard to slow-cooking carrots overnight  to getting your clients seen by NHS professionals who are so young they can't write out a prescription without sticking their tongues out and moving their lips. I'd been living here for nearly two years before I learned the key to dealing with registrars is patience and understanding. Young doctors are very overworked so it doesn't help to criticise them for not knowing how to dress for their shape and for only visiting the barbers once every six months.</p>

<p>"But I hope there will be something useful for everyone who listens to my show. And let's face it that means all of you because how many Radio 4 listeners actually go in to work on a Friday? Exactly."</p>

<p><b>Beauty of Britain goes out on Radio 4 Friday mornings at 11.30am.</b></p>

<p><i>Dictated from the vintage section of the PDSA shop to Christopher Douglas and Nicola Sanderson</i></p>
		

		
		
		 
	</div>
</div>


			 
			    <div class="post" id="entry-310871">
	<h2><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/up-in-edinburgh-the-bbcs.shtml" rel="bookmark">Comedy and Multiplatform</a></h2>

	<div class="meta">	
		<div class="flt-r" style="width:180px">
			
				<p style="text-align:right"><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/up-in-edinburgh-the-bbcs.shtml" title="Comments made about this entry." rel="comments">Comments 
(2)





</a></p>
			 
				
				<div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light">
					<a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fcomedy%2F2012%2F08%2Fup-in-edinburgh-the-bbcs.shtml&amp;appId=news">Share this page</a>
				</div>
			 
		</div>
		
		<div style="float:left; width:420px">
		
				
			<p class="categories">Post categories: <a href="https://nontonwae.pages.dev/blogs/comedy/edinburgh/" rel="tag" title="">Edinburgh</a>			
			</p>
			
		
			<p class="flt-l ">
				
				<span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/jon_aird/">Jon Aird</a></span> <span class="separator">|</span> <abbr class="published" title="2012-08-23T13:48:00+00:00">13:48 UK time, Thursday, 23 August 2012</abbr>
			</p>
		</div>
		<div class="cleardiv"><!-- clearing --></div>
	</div>
	
	<div class="post_content">
		
			<p><em>
<div class="imgCaption"><img class="mt-image-none" src="/staticarchive/d5106b912180d3a9b8e5e49ccb4997d354add41a.jpg" alt="BBC College of Production records a podcast" width="600" height="340"><p style="width: 600px; color: #666666; font-size: 11px;"> </p>
</div>
</em></p>
<p><em>Up in Edinburgh, the BBC's </em><a href="https://nontonwae.pages.dev/academy/collegeofproduction/"><em>College of Production</em></a><em> (COP) has been talking to comedians about online shennanigans. The COP's Catherine Scott writes...</em></p>
<p>
</p><p><br>Yesterday saw four of comedy's bright new stars share their thoughts on how to be 'funny and multiplatform', during BBC College of Production's live podcast from the BBC Edinburgh Festival base in Potterow. The panel consisted of <a href="https://danielberg.co.uk/">Daniel Berg</a>, the comedy writer and developer who specialises in viral video, <a href="https://www.bechillcomedian.com/indexx.html">Bec Hill</a>, named one of the "Top 10 Funniest Comedians on Twitter", Arron Ferguson of alternative comedy duo <a href="https://notmoleman.tumblr.com/">Not The Adventures of Moleman</a> and Iván González, one half of Foster's Edinburgh Comedy Award 2011-winning duo <a href="https://www.edfringe.com/whats-on/comedy/max-and-ivan-are-con-artists">Max and Ivan</a>.</p>
<p>Prolific Tweeter Bec Hill told us how she started using online platforms simply to share her comedy sketches and cartoons with her friends, and was pleasantly surprised when it snowballed into a 3000+ Twitter following. Bec also noted that her online audience has grown much faster than her live audience – "I've reached 100,000 views on YouTube, I certainly haven’t got that in Edinburgh yet!".</p>
<p>Daniel Berg's passion for viral videos was evident when a strong gust of Scottish wind blasted through the pink tent and he remarked "Film that, that'll go viral!". Daniel spoke of how social media and online platforms give new acts the chance for exposure without the need to be commissioned. When wrangling with the shorter attention span of the internet audience, Daniel’s advice to comedians was "Keep your content topical, and keep it short."</p>
<p>Ivan Gonzalez sang the praises of online platforms such as YouTube for giving comedians creative control, and also gave a shout-out to BBC's iPlayer and Feed My Funny for allowing viewers to access comedy outside the restrictions of viewing schedules. Like Bec Hill, Ivan also enjoys the immediacy of 140 character jokes on Twitter – and if the #EdFest feed this week is anything to go by, so do a lot of us (“Just been to a lecture on how to build a ship. Riveting!")</p>
<p>Arron Ferguson's two-man sketch troupe Not The Adventures of Moleman actually began as a solely online act, only venturing out onto the live circuit once they had built a large online following. Noting that "some people think you need to be live to be comedians", Arron pointed out that a lot of NTAOM's sketches actually work better online, because film can provide subtle shots that might be missed in onstage comedy. Arron also gave us possibly the most useful piece of advice on treating online platforms with respect – "Don’t use Twitter to invite all your fans to KFC!"</p>
<p>Although the public passion for live comedy gigs remains strong, any new comedian entering the industry should remember that there is a plethora of other options available to them for making their name and getting their work out there. It might take a while to build up 100,000 hits on YouTube or 1000 followers on Twitter, but as our guests concluded “As long as you’re having fun, that's what matters."</p>
<p>Listen to the <a href="https://nontonwae.pages.dev/academy/collegeofproduction/podcast/online/funny_and_multiplatform">full podcast</a>.</p>
<p>Follow College of Production <a href="https://twitter.com/BBCCop">@BBCCop</a></p>

		

		
		
		 
	</div>
</div>


			 
			    <div class="post" id="entry-310442">
	<h2><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/new-jason-byrne-sitcom-father.shtml" rel="bookmark">New Jason Byrne Sitcom 'Father Figure'</a></h2>

	<div class="meta">	
		<div class="flt-r" style="width:180px">
			
				<p style="text-align:right"><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/new-jason-byrne-sitcom-father.shtml" title="Comments made about this entry." rel="comments">Comments 
(1)





</a></p>
			 
				
				<div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light">
					<a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fcomedy%2F2012%2F08%2Fnew-jason-byrne-sitcom-father.shtml&amp;appId=news">Share this page</a>
				</div>
			 
		</div>
		
		<div style="float:left; width:420px">
		
				
			<p class="categories">Post categories: <a href="https://nontonwae.pages.dev/blogs/comedy/announcements/" rel="tag" title="Blog-related announcements">announcements</a><span class="delimiter">, </span><a href="https://nontonwae.pages.dev/blogs/comedy/bbc-one/" rel="tag" title="">bbc one</a>			
			</p>
			
		
			<p class="flt-l ">
				
				<span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/jon_aird/">Jon Aird</a></span> <span class="separator">|</span> <abbr class="published" title="2012-08-09T07:00:00+00:00">07:00 UK time, Thursday,  9 August 2012</abbr>
			</p>
		</div>
		<div class="cleardiv"><!-- clearing --></div>
	</div>
	
	<div class="post_content">
		
			<div class="imgCaption"><img class="mt-image-none" src="/staticarchive/118cdec1d862170b20a06e7fbc28381c65024d65.jpg" alt="Jason Byrne" width="600" height="427"><p style="width: 600px; color: #666666; font-size: 11px;"> </p>
</div>
<p><a href="https://nontonwae.pages.dev/bbcone"><strong>BBC One</strong></a> has commissioned a pilot of Father Figure, a new sitcom created, written by and starring the stand-up comedian <a href="https://www.jasonbyrne.ie/"><strong>Jason Byrne</strong></a>, to go into production early next year.</p>
<p>Jason Byrne plays married father Tom. He tries to be the best dad he can to his two sons, but bad luck and his extended family are always upsetting his plans. Jason will be accompanied by Pauline McLynn (Father Ted), Michael Smiley (Luther) and Dermot Crowley (Bleak House).</p>
<p>Jason said "It's been a big dream of mine and I'd never have thought I would get the chance to join the ranks of the television sitcom world. The characters all come from real life and the outrageous situations Tom gets into have, more often than not, actually happened to me. The people in my life will never realise that it's them I'm writing about, unless my wife and two sons, mother, father and best mate ever watch it."</p>
		

		
		
		 
	</div>
</div>


			 
	</div>
	<!--contents ends here-->
	
	<!-- sidebar starts here -->
	<div class="sidebar">
		
<p class="jump"><a href="#jump_more">Jump to more content from this blog</a></p> 

  <div class="block block-one about">
	<div class="wrap1">
		<div class="wrap2">
			<div class="wrap3">	
				<div class="title"><h3>About this blog</h3></div>
				<div class="inner">
					Funny stuff from the heart of the BBC Comedy Department.<br><br><div class="cleardiv"><!--clearing--></div>
					<p style="margin:10px 0 0 0!important">For the latest updates across BBC blogs, <br><a href="https://nontonwae.pages.dev/blogs">visit the Blogs homepage</a>.</p>
					<div class="cleardiv"><!--clearing--></div>
				</div>
			</div>
		</div>
	</div>
</div>

<div class="block rss block-one">
	<div class="wrap1">
	 <div class="wrap2">
	  <div class="wrap3">
		<div class="title"><h3>Subscribe to BBC Comedy Blog</h3></div>
	   	<div class="inner">
			<p>You can stay up to date with BBC Comedy Blog via these feeds.</p>	
<p class="rss_link first"><a href="https://nontonwae.pages.dev/blogs/comedy/rss.xml">BBC Comedy Blog Feed</a><span>(RSS)</span></p>
<p class="rss_link"><a href="https://nontonwae.pages.dev/blogs/comedy/atom.xml">BBC Comedy Blog Feed</a><span>(ATOM)</span></p>			
			<p>If you aren't sure what RSS is you'll find <a href="https://news.bbc.co.uk/1/hi/help/3223484.stm">our beginner's guide to RSS</a> useful.</p>
			</div>	
		</div>
	 </div>
	</div>
</div>
<!-- funny stuff starts -->
<div class="block block-two">
<div class="wrap1">
<div class="wrap2">
<div class="wrap3">
<div class="title"><h3>Highlights and Exclusives</h3></div>

<div class="inner">

<ul class="sidebar-list"><li><a href="https://nontonwae.pages.dev/blogs/comedy/how-to-behave-in-the-outside-w/">How to Behave in the Outside World</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/come-fly-with-me/">Come Fly With Me</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/spout/">Spout</a> - topical comedy</li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/have-i-got-news-for-you/">Have I Got News For You</a> - picture gags</li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/2010/05/angelos-epithemious-webcam.shtml">Angelos Epithemiou's Webcam</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/baby-diary/">Baby Diaries</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/bellamys-people/">Bellamy's People</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/the-thick-of-it/">The Thick of It</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/brian-pern/">Brian Pern</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/psychoville/">Psychoville</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/comedy/david-firth/">David Firth</a></li>
</ul></div>

<div class="bottom">
<p>For more funny videos exclusive to the web, head over to the <a href="https://nontonwae.pages.dev/comedy/clips/">clips section</a>.</p>
</div>

</div>
</div>
</div>
</div>
<!-- funny stuff ends -->
<!-- Block one twitter starts -->
<div class="block block-one twitter">
	<div class="wrap1">
		<div class="wrap2">
		  	<div class="wrap3">
				<div class="title"><h3>Follow us</h3></div>					
						<a href="https://twitter.com/bbccomedy"><img src="/staticarchive/dca79faa66a50c89222134094d422344c92a0005.gif" alt="Follow our twitter feed" class="twitter_img" style="margin:5px 0 0 5px;"></a>
						<div class="inner"><p class="small tx-r" style="text-align: right;"><a href="https://www.facebook.com/bbccomedy">We're also on <strong>Facebook</strong></a></p></div>
				</div>
		</div>
	</div>
</div>
<!-- Block one twitter ends -->



<!-- blogroll starts -->
<div class="block block-one blogroll">
<div class="wrap1">
<div class="wrap2">
<div class="wrap3">
<div class="title"><h3>Blogroll</h3></div>
<div class="inner">
<ul class="sidebar-list"><li><a href="https://nontonwae.pages.dev/blogs/bbcthree/">BBC Three Blog</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/russellhoward/">Russell Howard's Good News</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/adamandjoe/">Adam and Joe 6 Music Blog</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/writersroom/">Writersroom Blog</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/radio4/">Radio 4 Blog</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/bbcinternet/">The BBC Internet Blog</a></li>
<li><a href="https://nontonwae.pages.dev/blogs/tv/comedy">Comedy on the BBC TV Blog</a></li>
</ul></div>
</div>
</div>
</div>
</div>
<!-- blogroll ends -->


			
	</div>
	<!-- sidebar ends here -->
  </div>		
	
<div class="cleardiv"><!--clearing div--></div>
	<!--more-->
	<div class="related content">
  <h2>Other posts from this blog</h2>
    <div class="grids"> 
      
        <div class="first unit">
          <h3><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/the-thick-of-it-returns.shtml" rel="bookmark">The Thick of It Returns</a></h3>
<div class="meta">

by <span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/jon_aird/">Jon Aird</a></span> on <abbr class="published" title="2012-07-12T07:00:00+00:00">07:00 UK time, Thursday, 12 July 2012</abbr>



<span class="separator">|</span> <a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/the-thick-of-it-returns.shtml" title="Comments made about this entry." rel="comments">Comments 
(1)





</a>


</div>

	<p>   Armando Iannucci's award-winning political comedy series The Thick Of It returns to BBC...</p>

<p><strong><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/the-thick-of-it-returns.shtml" rel="bookmark">Read more...</a></strong></p> 

        </div>
     
        <div class=" unit">
          <h3><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/feed-my-funny-exclusives.shtml" rel="bookmark">Feed My Funny Exclusives</a></h3>
<div class="meta">

by <span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/will_saunders/">Will Saunders</a></span> on <abbr class="published" title="2012-07-02T19:00:00+00:00">19:00 UK time, Monday,  2 July 2012</abbr>



<span class="separator">|</span> <a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/feed-my-funny-exclusives.shtml" title="Comments made about this entry." rel="comments">Comments 
(2)





</a>


</div>

	<p> Last month YouTube celebrated its 7th birthday. Hulu, the largest legal TV streaming service...</p>

<p><strong><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/feed-my-funny-exclusives.shtml" rel="bookmark">Read more...</a></strong></p> 

        </div>
     
        <div class=" unit">
          <h3><a href="https://nontonwae.pages.dev/blogs/comedy/2012/06/its-kevin.shtml" rel="bookmark">It's Kevin</a></h3>
<div class="meta">

by <span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/jon_aird/">Jon Aird</a></span> on <abbr class="published" title="2012-06-19T15:30:00+00:00">15:30 UK time, Tuesday, 19 June 2012</abbr>



<span class="separator">|</span> <a href="https://nontonwae.pages.dev/blogs/comedy/2012/06/its-kevin.shtml" title="Comments made about this entry." rel="comments">Comments 
(2)





</a>


</div>

	<p>If you were visitng the internet yesterday, you may have heard about our new show...</p>

<p><strong><a href="https://nontonwae.pages.dev/blogs/comedy/2012/06/its-kevin.shtml" rel="bookmark">Read more...</a></strong></p> 

        </div>
     
        <div class=" unit">
          <h3><a href="https://nontonwae.pages.dev/blogs/comedy/2012/05/bbc-set-for-festival-fringe-at.shtml" rel="bookmark">BBC Set For Festival Fringe at Edinburgh 2012</a></h3>
<div class="meta">

by <span class="vcard author"><a href="https://nontonwae.pages.dev/blogs/comedy/suzy_grant/">Suzy Grant</a></span> on <abbr class="published" title="2012-05-31T16:55:00+00:00">16:55 UK time, Thursday, 31 May 2012</abbr>



<span class="separator">|</span> <a href="https://nontonwae.pages.dev/blogs/comedy/2012/05/bbc-set-for-festival-fringe-at.shtml" title="Comments made about this entry." rel="comments">Comments 
(3)





</a>


</div>

	<p> We're going back to the Fringe! This summer, we'll pick up from where we...</p>

<p><strong><a href="https://nontonwae.pages.dev/blogs/comedy/2012/05/bbc-set-for-festival-fringe-at.shtml" rel="bookmark">Read more...</a></strong></p> 

        </div>
      
   </div>
</div>


	<!--end more-->
	
</div>
<!--main content ends here-->
































<div class="cleardiv"><!--clearing div--></div>
































<div id="explore">  
   	<div class="more content">
		<h2><a name="jump_more"></a>More from this blog...</h2>
			<!--grids-->
			<div class="grids">

				
<div class="unit topical">
 <div class="title"><h3>Topical posts on this blog</h3></div>
    <div class="inner">
        <div id="beingdiscussedNow">
<h2>Being Discussed Now</h2>
<ul class="dna-list"><li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/up-in-edinburgh-the-bbcs.shtml">Comedy and Multiplatform</a><span>(2)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/11/jason-cook-on-hebburn.shtml">Jason Cook on... Hebburn</a><span>(1)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/radio-4s-beauty-olonga.shtml">Radio 4's Beauty Olonga </a><span>(2)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/new-jason-byrne-sitcom-father.shtml">New Jason Byrne Sitcom 'Father Figure'</a><span>(1)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/the-thick-of-it-returns.shtml">The Thick of It Returns</a><span>(1)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/08/definitely-still-absolutely-fa.shtml">Definitely Still Absolutely Fabulous</a><span>(20)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/feed-my-funny-exclusives.shtml">Feed My Funny Exclusives</a><span>(2)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/08/ideal.shtml">Ideal has dealt it's last.</a><span>(19)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/06/its-kevin.shtml">It's Kevin</a><span>(2)</span></li>
  <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/05/bbc-set-for-festival-fringe-at.shtml">BBC Set For Festival Fringe at Edinburgh 2012</a><span>(3)</span></li>
</ul></div>
    </div>
</div>

<div class="unit archives">
	<!--block item - dark green top box-->
	<div class="title"><h3>Archives</h3></div>
	<div class="inner">
		<p><strong>Past twelve months</strong></p>
	 <ul><li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/08/">August 2012 (3)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/07/">July 2012 (2)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/06/">June 2012 (1)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/05/">May 2012 (2)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/03/">March 2012 (4)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/02/">February 2012 (4)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2012/01/">January 2012 (3)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/12/">December 2011 (1)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/11/">November 2011 (10)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/10/">October 2011 (11)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/09/">September 2011 (5)</a></li>

    
        
	      <li><a href="https://nontonwae.pages.dev/blogs/comedy/2011/08/">August 2011 (15)</a></li>

    
</ul><p class="all"><a href="https://nontonwae.pages.dev/blogs/comedy/archives.shtml">complete archive</a></p>			
	</div>
	<!--end item - dark green top box-->
	
</div>

	<div class="unit tags">
	<!--block item - dark green top box-->
	<div class="title"><h3>Categories</h3></div>
	<div class="inner">
              		<p>These are some of the popular topics this blog covers.</p>
		
						<ul class="tags"><li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/5-live/">5 live</a></li>
							
									<li class="rank-9"><a href="https://nontonwae.pages.dev/blogs/comedy/adam-buxton/">adam buxton</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/alone-in-the-shed/">alone in the shed</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/angelos-epithemiou/">angelos epithemiou</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/animation/">animation</a></li>
							
									<li class="rank-65"><a href="https://nontonwae.pages.dev/blogs/comedy/announcements/">announcements</a></li>
							
									<li class="rank-23"><a href="https://nontonwae.pages.dev/blogs/comedy/appeal/">appeal</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/ashens/">ashens</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/baby-diary/">baby diary</a></li>
							
									<li class="rank-7"><a href="https://nontonwae.pages.dev/blogs/comedy/bbc-four/">bbc four</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/bbc-north/">bbc north</a></li>
							
									<li class="rank-29"><a href="https://nontonwae.pages.dev/blogs/comedy/bbc-one/">bbc one</a></li>
							
									<li class="rank-33"><a href="https://nontonwae.pages.dev/blogs/comedy/bbc-three/">bbc three</a></li>
							
									<li class="rank-26"><a href="https://nontonwae.pages.dev/blogs/comedy/bbc-two/">bbc two</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/beautiful-people/">beautiful people</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/behind-the-scenes/">behind the scenes</a></li>
							
									<li class="rank-22"><a href="https://nontonwae.pages.dev/blogs/comedy/bellamys-people/">bellamy's people</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/blandings/">blandings</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/bleak-old-shop-of-stuff/">bleak old shop of stuff</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/blogmin/">blogmin</a></li>
							
									<li class="rank-11"><a href="https://nontonwae.pages.dev/blogs/comedy/breaking-news/">breaking news</a></li>
							
									<li class="rank-8"><a href="https://nontonwae.pages.dev/blogs/comedy/brian-pern/">brian pern</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/candy-cabs/">candy cabs</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/cbbc/">cbbc</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/chain-reaction/">chain reaction</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/children-in-need/">children in need</a></li>
							
									<li class="rank-9"><a href="https://nontonwae.pages.dev/blogs/comedy/christmas/">christmas</a></li>
							
									<li class="rank-32"><a href="https://nontonwae.pages.dev/blogs/comedy/clips-and-previews/">clips and previews</a></li>
							
									<li class="rank-10"><a href="https://nontonwae.pages.dev/blogs/comedy/come-fly-with-me/">come fly with me</a></li>
							
									<li class="rank-49"><a href="https://nontonwae.pages.dev/blogs/comedy/comedy-extra/">comedy extra</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/comedy-of-the-week-podcast/">comedy of the week podcast</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/comedy-presents/">comedy presents</a></li>
							
									<li class="rank-66"><a href="https://nontonwae.pages.dev/blogs/comedy/comic-relief/">comic relief</a></li>
							
									<li class="rank-7"><a href="https://nontonwae.pages.dev/blogs/comedy/coming-of-age/">coming of age</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/cringe-of-the-week/">cringe of the week</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/david-firth/">david firth</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/doc-brown/">doc brown</a></li>
							
									<li class="rank-8"><a href="https://nontonwae.pages.dev/blogs/comedy/eddie-iz-running/">eddie iz running</a></li>
							
									<li class="rank-9"><a href="https://nontonwae.pages.dev/blogs/comedy/edinburgh/">edinburgh</a></li>
							
									<li class="rank-17"><a href="https://nontonwae.pages.dev/blogs/comedy/edinburgh-fringe/">edinburgh fringe</a></li>
							
									<li class="rank-28"><a href="https://nontonwae.pages.dev/blogs/comedy/features/">features</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/feed-my-funny/">feed my funny</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/flight-of-the-conchords/">flight of the conchords</a></li>
							
									<li class="rank-7"><a href="https://nontonwae.pages.dev/blogs/comedy/funny-eye/">funny eye</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/funny-in-15/">funny in 15</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/funny-women/">funny women</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/gallery/">gallery</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/games/">games</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/gavin-stacey/">gavin &amp; stacey</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/genius/">genius</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/getting-on/">getting on</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/grippenschaaft/">grippenschaaft</a></li>
							
									<li class="rank-65"><a href="https://nontonwae.pages.dev/blogs/comedy/have-i-got-news-for-you/">have i got news for you</a></li>
							
									<li class="rank-10"><a href="https://nontonwae.pages.dev/blogs/comedy/henry-80/">henry 8.0</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/home-time/">home time</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/how-to-behave-in-the-outside-w/">how to behave in the outside world</a></li>
							
									<li class="rank-10"><a href="https://nontonwae.pages.dev/blogs/comedy/ideal/">ideal</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/idiots-of-ants/">idiots of ants</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/igod/">igod</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/in-with-the-flynns/">in with the flynns</a></li>
							
									<li class="rank-18"><a href="https://nontonwae.pages.dev/blogs/comedy/interactive/">interactive</a></li>
							
									<li class="rank-17"><a href="https://nontonwae.pages.dev/blogs/comedy/interviews/">interviews</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/jason-lewis/">jason lewis</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/jesting-about-1/">jesting about</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/john-keller/">john keller</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/john-sullivan/">john sullivan</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/jonni-music/">jonni music</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/la-la-land/">la la land</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/last-of-the-summer-wine/">last of the summer wine</a></li>
							
									<li class="rank-5"><a href="https://nontonwae.pages.dev/blogs/comedy/lifes-too-short/">life's too short</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/look-away-now/">look away now</a></li>
							
									<li class="rank-18"><a href="https://nontonwae.pages.dev/blogs/comedy/marks-brilliant-blog/">mark's brilliant blog</a></li>
							
									<li class="rank-5"><a href="https://nontonwae.pages.dev/blogs/comedy/michael-mcintyre/">michael mcintyre</a></li>
							
									<li class="rank-18"><a href="https://nontonwae.pages.dev/blogs/comedy/miranda/">miranda</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/misery-bear/">misery bear</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/mitchell-and-webb/">mitchell and webb</a></li>
							
									<li class="rank-14"><a href="https://nontonwae.pages.dev/blogs/comedy/mongrels/">mongrels</a></li>
							
									<li class="rank-8"><a href="https://nontonwae.pages.dev/blogs/comedy/mrs-browns-boys/">mrs brown's boys</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/never-mind-the-buzzcocks/">never mind the buzzcocks</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/new-comedy-award/">new comedy award</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/newsjack/">newsjack</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/newsletter/">newsletter</a></li>
							
									<li class="rank-11"><a href="https://nontonwae.pages.dev/blogs/comedy/no-more-women/">no more women</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/pilot/">pilot</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/pilots/">pilots</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/pramface/">pramface</a></li>
							
									<li class="rank-20"><a href="https://nontonwae.pages.dev/blogs/comedy/psychoville/">psychoville</a></li>
							
									<li class="rank-32"><a href="https://nontonwae.pages.dev/blogs/comedy/radio/">radio</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/radio-1/">radio 1</a></li>
							
									<li class="rank-8"><a href="https://nontonwae.pages.dev/blogs/comedy/radio/radio-2/">radio 2</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/radio/radio-3/">radio 3</a></li>
							
									<li class="rank-39"><a href="https://nontonwae.pages.dev/blogs/comedy/radio/radio-4/">radio 4</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/red-button/">red button</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/red-nose-day/">red nose day</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/rev/">rev.</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/robin-cooper/">robin cooper</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/rock-chips/">rock &amp; chips</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/roger-and-val/">roger and val</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/russell-howard/">russell howard</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/salford-sitcom-showcase-1/">salford sitcom showcase</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/sarah-millicans-support-group/">sarah millican's support group</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/scroobius-pip/">scroobius pip</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/sex-drugs-rocknchips/">sex, drugs &amp; rock'n'chips</a></li>
							
									<li class="rank-10"><a href="https://nontonwae.pages.dev/blogs/comedy/shooting-stars/">shooting stars</a></li>
							
									<li class="rank-11"><a href="https://nontonwae.pages.dev/blogs/comedy/sneak-peek/">sneak peek</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/special-report/">special report</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/spendingtons/">spendingtons</a></li>
							
									<li class="rank-5"><a href="https://nontonwae.pages.dev/blogs/comedy/sport-relief/">sport relief</a></li>
							
									<li class="rank-13"><a href="https://nontonwae.pages.dev/blogs/comedy/spout/">spout</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/standup/">stand-up</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/stewart-lee/">stewart lee</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/taking-the-flak/">taking the flak</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/the-great-outdoors/">the great outdoors</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/the-matt-lucas-awards/">the matt lucas awards</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/the-news-at-bedtime/">the news at bedtime</a></li>
							
									<li class="rank-12"><a href="https://nontonwae.pages.dev/blogs/comedy/the-news-quiz/">the news quiz</a></li>
							
									<li class="rank-17"><a href="https://nontonwae.pages.dev/blogs/comedy/the-now-show/">the now show</a></li>
							
									<li class="rank-7"><a href="https://nontonwae.pages.dev/blogs/comedy/the-office/">the office</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/the-one-ronnie/">the one ronnie</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/the-persuasionists/">the persuasionists</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/the-royle-family/">the royle family</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/the-stephen-k-amos-show/">the stephen k amos show</a></li>
							
									<li class="rank-9"><a href="https://nontonwae.pages.dev/blogs/comedy/the-thick-of-it/">the thick of it</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/thingstodobeforeyoudie/">thingstodobeforeyoudie</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/this-is-jinsy/">this is jinsy</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/three-scientists/">three scientists</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/not-true/">transfer day updates</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/twenty-twelve/">twenty twelve</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/urgentgenius/">urgentgenius</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/vexed/">vexed</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/walk-on-the-wild-side/">walk on the wild side</a></li>
							
									<li class="rank-7"><a href="https://nontonwae.pages.dev/blogs/comedy/we-are-klang/">we are klang</a></li>
							
									<li class="rank-2"><a href="https://nontonwae.pages.dev/blogs/comedy/we-need-answers/">we need answers</a></li>
							
									<li class="rank-4"><a href="https://nontonwae.pages.dev/blogs/comedy/web-exclusives/">web exclusives</a></li>
							
									<li class="rank-20"><a href="https://nontonwae.pages.dev/blogs/comedy/whats-on/">what's on</a></li>
							
									<li class="rank-6"><a href="https://nontonwae.pages.dev/blogs/comedy/whites/">whites</a></li>
							
									<li class="rank-1"><a href="https://nontonwae.pages.dev/blogs/comedy/will-mellor/">will mellor</a></li>
							
									<li class="rank-5"><a href="https://nontonwae.pages.dev/blogs/comedy/wilson-dixon-on/">wilson dixon on...</a></li>
							
									<li class="rank-5"><a href="https://nontonwae.pages.dev/blogs/comedy/world-cup/">world cup</a></li>
							
									<li class="rank-3"><a href="https://nontonwae.pages.dev/blogs/comedy/writers-room/">writers' room</a></li>
							
									<li class="rank-14"><a href="https://nontonwae.pages.dev/blogs/comedy/writing/">writing</a></li>
							
						 </ul></div>
	<!--end item - dark green top box-->
</div>


<div class="unit authors">
<div class="title"><h3>Latest contributors</h3></div>
<div class="inner">


	<ul><li><a href="https://nontonwae.pages.dev/blogs/comedy/will_saunders/">Will Saunders</a></li>
	        
	
	        
	            <li><a href="https://nontonwae.pages.dev/blogs/comedy/jon_aird/">Jon Aird</a></li>
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	
	        
	            <li><a href="https://nontonwae.pages.dev/blogs/comedy/suzy_grant/">Suzy Grant</a></li>
	        
	
	        
	            <li><a href="https://nontonwae.pages.dev/blogs/comedy/michelle_brooks/">Michelle Brooks</a></li>
	        
	
	        
	            <li><a href="https://nontonwae.pages.dev/blogs/comedy/candice_lo/">Candice Lo</a></li>
	        
	
	</ul></div>
</div>

			</div>	
			<!-- end grids-->
	</div>
</div>



</div>

<script type="text/javascript" src="/staticarchive/a6d9e652f6ae17eb1e582e3c58afb64e417a7216.js"></script><script type="text/javascript">set_latest_blog(243);</script><!--MT global footer start--></div>   <div id="blq-mast" class="blq-rst blq-default-domestic blq-new-nav" lang="en-GB"> <div id="blq-sign-in">   <div id="id-status" class="blq-id-v4"> <div class="id-out id-gel"> <h2 class="blq-hide">BBC iD</h2> <a href="https://ssl.bbc.co.uk/id/status" id="blq-idstatus-link"> <span class="id-icon"> <span></span> </span> <span id="blq-idstatus-text"> BBC iD </span> <span class="id-spinner"></span> <span class="blq-dropdown-arrow"> <span></span> </span> </a> </div> <div id="id-status-nav"> <div class="id-in blq-rst"> <ul><li> <a name="idDash" class="blq-nogo has-ptrt idDash" href="https://ssl.bbc.co.uk/id/settings"> Settings </a> </li> <li> <a name="idSignout" class="blq-nogo has-ptrt idSignout" href="https://ssl.bbc.co.uk/id/signout"> Sign out </a> </li> </ul></div> </div> </div>          </div>  <form method="get" id="blq-search-form" action="https://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="/blogs/comedy/"><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 navigation</h2> <ul id="blq-nav-main" class="blq-not-uk"><li id="blq-nav-n"><a href="https://nontonwae.pages.dev/news/" hreflang="en-GB">News</a></li>  <li id="blq-nav-s"><a href="https://nontonwae.pages.dev/sport/" hreflang="en-GB">Sport</a></li> <li id="blq-nav-w"><a href="https://nontonwae.pages.dev/weather/" hreflang="en-GB">Weather</a></li>  <li id="blq-nav-i">  <a href="/iplayer/" hreflang="en-GB">iPlayer</a>  </li>  <li id="blq-nav-t"><a href="/tv/" hreflang="en-GB">TV</a></li>  <li id="blq-nav-r"><a href="/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="/cbbc/">CBBC</a></li> <li><a href="/cbeebies/">CBeebies</a></li> <li><a href="/comedy/">Comedy</a></li> <li><a href="/food/">Food</a></li> <li><a href="/history/">History</a></li> </ul><ul class="blq-nav-sub"><li><a href="/learning/">Learning</a></li> <li><a href="/music/">Music</a></li> <li><a href="/science/">Science</a></li> <li><a href="/nature/">Nature</a></li> <li><a href="/local/">Local</a></li> </ul><ul class="blq-nav-sub blq-last"><li><a href="/northernireland/">Northern Ireland</a></li> <li><a href="/scotland/">Scotland</a></li> <li><a href="/wales/">Wales</a></li> <li id="blq-az"><a href="/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="https://www.browserchoice.eu/">Find out more <span>about upgrading your browser</span> here&hellip;</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://nontonwae.pages.dev/">Mobile site</a></li>      <li><a href="/terms/">Terms of Use</a></li>       <li><a href="/aboutthebbc/">About the BBC</a></li>  </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/privacy/">Privacy</a></li>       <li><a href="/accessibility/">Accessibility Help</a></li>  </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/privacy/cookies/about">Cookies</a></li>        <li><a href="/contact/">Contact the BBC</a></li>   </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/guidance/">Parental Guidance</a></li>  </ul></li>  </ul></div>   <div id="blq-foot-blocks" class="blq-footer-image-light"><img src="/staticarchive/a8e42f8fe987b7cc9bf2d43b74b2c74b2448d2e3.png" width="84" height="24" alt="BBC"></div> <p id="blq-disclaim"><span id="blq-copy">BBC © 2014</span> <a href="/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>  </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">/*<![CDATA[*/  /*]]>*/</script></body></html>