// DATA - Homepage Information

// -----------------------------------------------------------------------------------------------------------
function setTickerTape()
{

// Format -> setTickerStatus(speed, scrollsize);
//   speed - is a number (lower the value, faster the speed)
//   scrollsize - is a number giving a rough width of the ticker tape box

    setTickerControl(200, 50);

// Repeat 'setTickerData' as Required
//    Format -> setTickerText('effectivedate', 'mode', 'textvalue');
//       mode - is 'on' or 'off'

        setTickerData('20100319', 'off', '');

}
// -----------------------------------------------------------------------------------------------------------
function loadAdvert()
{

// Set default image which is shown if no advert scheduled
        setAdvertDefaultImage('');

// Repeat 'setAdvertData' as Required
//    Format -> setAdvertData('effectivedate', 'mode', 'title', 'image', 'detail', 'bordercolour', 'borderstyle', 'borderwidth', 'backgroundcolour');
//       mode - is 'on' or 'off'

//        setAdvertData('20100706', 'on', 'Music for Awhile <br><i><span style="font-size:12pt">An Evening of Classical Music</span></i>', 'images/general/colourmusic.jpg', 
//               '<b>Given by Richard Etheridge (Tenor)</b><br><br>St Mary\'s Church &rArr; 7:30pm<br><br>Tickets £10 including refreshments. Available from Nailsea Music Shop. Also available by phone <br>01275 877195,<br><br>Richard is raising funds for his Musical study at the Welsh College of Music and Drama, commencing in September.', 'blue', 'solid', 'medium', '#dddddd');
//        setAdvertData('20100724', 'on', 'Kenn & Kingston Kombined', 'images/general/barndance.jpg', 
//                      'Barn Dance at Tutshill Farm<br>7:30pm<br><br>Tickets £10 to include a Ploughman\'s Supper,<br>&rArr; Ages 10-16 : £5<br>&rArr; Under 10 Free', 'black', 'solid', 'medium', 'yellow');
//        setAdvertData('20100801', 'off', '', '', 
//                      '', 'black', 'solid', 'medium', '#b9ffff');
        addAdvertData('20100701', '20100723', 
        		'Music for Awhile <br><i><span style="font-size:12pt">An Evening of Classical Music</span></i>', 
        		'images/general/colourmusic.jpg', 
                '<b>Given by Richard Etheridge (Tenor)</b><br><br>St Mary\'s Church<br>&rArr;Sat 24th July &rArr; 7:30pm<br><br>Tickets £10 including refreshments. Available from Nailsea Music Shop. Also available by phone <br>01275 877195,<br><br>Richard is raising funds for his Musical study at the Welsh College of Music and Drama, commencing in September.',
                'blue', 'solid', 'medium', '#dddddd');
        addAdvertData('20100701', '20100731', 
        		'Kenn & Kingston Kombined', 
        		'images/general/barndance.jpg', 
                'Barn Dance at Tutshill Farm<br>7:30pm<br><br>Tickets £10 to include a Ploughman\'s Supper,<br>&rArr; Ages 10-16 : £5<br>&rArr; Under 10 Free',
                 'black', 'solid', 'medium', 'yellow');
}
// -----------------------------------------------------------------------------------------------------------
function writeVacancy()
{

//    Format -> addVacancyLine('title', 'image', 'description');


}
// -----------------------------------------------------------------------------------------------------------
function loadHomeImage()
{

//    Format -> addHomeImage('imagefilename', imagewidth, imageheight);

        addHomeImage('images/general/images/familyfun1.JPG', 0, 0);
        addHomeImage('images/general/images/familyfun2.JPG', 0, 0);

}
// -----------------------------------------------------------------------------------------------------------
