var tWidth1='100%';                  // width (in pixels)
var tHeight1='25px';                  // height (in pixels)
var tcolour1='#80a0c0';               // background colour:
var moStop1=true;                     // pause on mouseover (true or false)
var fontfamily1 = 'arial,sans-serif'; // font for content
var tSpeed1=3;                        // scroll speed (1 = slow, 5 = fast)

// enter your ticker content here (use \/ and \' in place of / and ' respectively)
var content1='<font color="#ff0000">Jude Johnstone</font>&rsquo; songs have been recorded by top artists including Bonnie Raitt (&ldquo;Wounded Heart&rdquo;), Emmylou Harris (&ldquo;Hold On&rdquo;), Bette Midler (&ldquo;The Girl Is On To You&rdquo;), Johnny Cash (&ldquo;Unchained&rdquo;), Stevie Nicks (&ldquo;Cry Wolf&rdquo;), Jimmy LaFave, Clarence Clemons, Stephen Bishop (&ldquo;My Little Waterloo&rdquo;), Jennifer Warnes, and Trisha Yearwood (&ldquo;The Woman Before Me&rdquo;). Johnstone&rsquo;s songs have also been featured on Lifetime/ABC&rsquo;s hit television series &ldquo;Army Wives&rdquo;, Showtime&rsquo;s &ldquo;Nurse Jackie&rdquo;, and Fox TV&rsquo;s &ldquo;Lie To Me.&rdquo; An incredible singer and performer in her own right, Jude has released five CDs, performs at numerous festivals and venues, and frequently tours with Bonnie Raitt, who has described her as &ldquo;one of my favorite singers and songwriters.&rdquo; <font color="#ff0000">Dana Hubbard</font>&rsquo;s been described as &ldquo;a cross between Bruce Cockburn and Jorma Kaukonen&rdquo;. He combines the socially conscious singer/songwriter with the master acoustic blues guitarist, awing people with guitar skills that defy the ear and eye. What Dana does with the guitar is amazing to watch and a joy to listen to. You hear bass, back beat rhythm, melody and chords. If you look around for his backup guitar, you won&rsquo;t find one. This is Dana, performing solo. What you hear is a singer/songwriter front and center, addressing issues of environmentalism and social injustice in a voice that sometimes growls, sometimes he lilts or laughs, but he&rsquo;s always got a little twinkle in his eye. He has a social activist&rsquo;s soul and a bluesman&rsquo;s grin.';

// 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 cps1=tSpeed1;
var aw1, mq1;
var fsz1 = parseInt(tHeight1) - 4;
function startticker1()
{if (document.getElementById)   {var tick1 = '<div style="position:relative;width:'+tWidth1+';height:'+tHeight1+';overflow:hidden;background-color:'+tcolour1+'"'; 
   if (moStop1) tick1 += ' onmouseover="cps1=0" onmouseout="cps1=tSpeed1"'; tick1 +='><div id="mq1" style="position:absolute;left:0px;top:0px;font-family:'+fontfamily1+';font-size:'+fsz1+'px;white-space:nowrap;"><\/div><\/div>'; document.getElementById('ticker1').innerHTML = tick1; mq1 = document.getElementById("mq1"); mq1.style.left=(parseInt(tWidth1)+10)+"px"; mq1.innerHTML='<span id="tx1">'+content1+'<\/span>'; aw1 = document.getElementById("tx1").offsetWidth; lefttime1=setInterval("scrollticker1()",50);}} function scrollticker1(){mq1.style.left = (parseInt(mq1.style.left)>(-10 - aw1)) ?parseInt(mq1.style.left)-cps1+"px" : parseInt(tWidth1)+10+"px";} window.onload=startticker1;
                  
