var initAccordion = function()
{
	var accordion = new Accordion('#nav a', '#mainContent .section', {
		opacity: true, wait: true,
		onActive: function(toggler, elt) { toggler.setStyle('border-bottom','4px solid #ffffff'); if (elt.getElementById('slideshow')) { $('slideshow').style.display = 'block';} },
		onBackground: function(toggler, elt) { toggler.setStyle('border-bottom','4px solid #492d15');if (elt.getElementById('slideshow')) { $('slideshow').style.display = 'none';}}
	}, $('contentContainer'));	
}



var initRollovers = function()
{
	var thumbs = $$('a.thumb');

	thumbs.each(
		function(item) 
		{
			item.effect = new Fx.Styles(item, {duration: 300, wait: false, transition: Fx.Transitions.Quint.easeOut});
			item.effect.set({'opacity':1});
			item.addEvent('mouseenter',function(){item.effect.start({'opacity':0.7})});
			item.addEvent('mouseleave',function(){item.effect.start({'opacity':1})});
		}
	);
}

var initSlideshow = function()
{
	myShow = new Slideshow('slideshow', {hu: 'img/', images: ['ss01.jpg','ss03.jpg','ss02.jpg','ss04.jpg','ss05.jpg'],duration:[1000,4000]});
}

    
window.addEvent('domready', function(){
	initSlideshow(); 
	initRollovers(); 
	initAccordion(); 
});

