window.addEvent("domready", start_engine);

function start_engine() {	
	if($('tidbits')) {
		var myAccordion = new Fx.Accordion($$('.news_item h3'), $$('.news_item p'),{'initialDisplayFx':false});
		//myAccordion.addSection('myToggler1', 'myElement1'); // add the section at the end sections.
		//myAccordion.addSection('myToggler2', 'myElement2', 0); //add the section at the beginning of the sections.
	}
	
	if($$('.thumb') != "") {
		thumbInfo();
	}
	
	if($$('.weather') != "") {
		weather();
	}
}

function thumbInfo() {
	$$('.thumb').getElement('.info').set('tween', {duration: 200})
	$$('.thumb').getElement('.info').fade('hide');
	$$('.thumb').addEvent('mouseenter',function() {
		this.getElement('.info').fade(1);
	});
	$$('.thumb').addEvent('mouseleave',function() {
		this.getElement('.info').fade(0);
	});
}

function weather() {
	$('city').addEvent('change',function() {
		$$('.city').removeClass('on');
		var city = this.options[this.selectedIndex].title;
		$(city).setStyle('background-color','#fff');
		$(city).tween('background-color','#e2e2e2');

		$(city).addClass('on');
	});
}
