// JavaScript Document
var tWidth='800px';                  // width (in pixels)
var tHeight='25px';                  // height (in pixels)
var tcolour='#ffffcc';               // background colour:
var moStop=true;                     // pause on mouseover (true or false)
var fontfamily = 'arial,sans-serif'; // font for content
var tSpeed=3;                        // scroll speed (1 = slow, 5 = fast)

// enter your ticker content here (use \/ and \' in place of / and ' respectively)
//var content='<a href="programme\/Month.htm" target="_blank">In Month: Item1,&nbsp;Item2,&nbsp;<\/a><a href="cinema\/Month.htm" target="_blank">Film - Film1,&nbsp;Film - Film2.&nbsp;&nbsp;&nbsp;<\/a>';
var content='<a href="programme\/February.htm" target="_blank">In February: Pancake Day,&nbsp;Nathan Carter &amp; Band,&nbsp;Wine Tasting &amp; Italian Night,&nbsp;The Way Home Band (Heavy Gospel),&nbsp;Phil Cool.<\/a>&nbsp;&nbsp;&nbsp;<a href="programme\/March.htm" target="_blank">In March: A Night at the Musicals, EyesWrite - Say One for Me, Steemy Dan, Italian Night, Art Exhibition Opening - Geoffrey King, John McNicoll &amp; Band, Wine Tasting, RoughCast - Richard III, BTG - Blithe Spirit, Shaun Loughrey &amp; Band, The Bachelors, Ashley &amp; Shirley,&nbsp;<\/a><a href="cinema\/March.htm" target="_blank">Film - 127 Hours (15).&nbsp;&nbsp;&nbsp;<\/a><a href="programme\/April.htm" target="_blank">In April: Cambridge Devised Theatre - The Story of Ellen Terry, Bossa Revista, X-Men, Reeds &amp; Ivories, Derek Ryan &amp; Band, Peggy Lee Song Book, Art Exhibition Opening - Stuart Green, Wine Tasting &amp; Italian Night, Mad Dogs &amp; Englishmen - David Copperfield, Aesop&rsquo;s Touring Company - The Adventures of the Gingerbreadman, Ann Breen, Brotherhood of Man, Midnight Train,&nbsp;<\/a><a href="cinema\/April.htm" target="_blank">Film - Oranges &amp; Sunshine (15).<\/a>';

// Simple Marquee / Ticker Script
// copyright 3rd January 2006, Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the below code in this script (including this
// comment) is used without any alteration
var cps=tSpeed; var aw, mq; var fsz = parseInt(tHeight) - 4; function startticker(){if (document.getElementById) {var tick = '<div style="position:relative;width:'+tWidth+';height:'+tHeight+';overflow:hidden;background-color:'+tcolour+'"'; if (moStop) tick += ' onmouseover="cps=0" onmouseout="cps=tSpeed"'; tick +='><div id="mq" style="position:absolute;left:0px;top:0px;font-family:'+fontfamily+';font-size:'+fsz+'px;white-space:nowrap;"><\/div><\/div>'; document.getElementById('ticker').innerHTML = tick; mq = document.getElementById("mq"); mq.style.left=(parseInt(tWidth)+10)+"px"; mq.innerHTML='<span id="tx">'+content+'<\/span>'; aw = document.getElementById("tx").offsetWidth; lefttime=setInterval("scrollticker()",50);}} function scrollticker(){mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?parseInt(mq.style.left)-cps+"px" : parseInt(tWidth)+10+"px";} window.onload=startticker;
                  
