
var tstHeight=0,
	$about=null;

window.addEvent('domready',function()
{


getTwitters('social-twitter-content', { 
  id: 'festivalus', 
  count: 1, 
  enableLinks: true, 
  ignoreReplies: true, 
  clearContents: true,
  newwindow:true,
  template: '<span class="social-twitter-said">Festivalus said,</span> <span class="social-twitter-text">"%text%" <br /><a class="social-twitter-posted" href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a></span>'
});

//setup slideshow
	    var myShow = new Slideshow('slideshow-block', 
									slideshowdata, 
									{
										captions:true,
										controller: true, 
										height: 242, 
										hu: '/media/images/NBN_Images/', 
										thumbnails: false, 
										width: 597
									});

//MORE button
$about=$$('.festival-about-content');

$('festival-more-link').addEvent('click',function()
{
	var hhh='510px';
	if(moreover) hhh=moreover;
		if($about.getStyle('height')=='368px')
		{
			$about.set('tween',{duration:200}).tween('height',hhh);
			this.set('html','Less [ - ]');
		}
		else
		{
			$about.set('tween',{duration:200}).tween('height','368px');
			this.set('html','More [+]');
		}
});

$$('.login-small-submit').addEvents(
						{
							'mouseover':function()
							{
								this.src='/themes/fest/images/login_button_R.gif';
							},
							'mouseout':function()
							{
								this.src='/themes/fest/images/login_button.gif';
							}
					});

$$('#festival-newsletter>a>img').addEvents(
						{
							'mouseover':function()
							{
								this.src='/themes/fest/images/newsletter_button_R.gif';
							},
							'mouseout':function()
							{
								this.src='/themes/fest/images/newsletter_button.gif';
							}
					});


});

