
// Expandable Menu
window.addEvent('domready', function(){
	$$('#tabs li').each(function(li) {
		$(li).addEvent('mouseover', function(e) {
			$(li).addClass('active');
		});
		$(li).addEvent('mouseout', function(e) {
			var parents = $(li).getParents('li ul');
			// Neccessary to avoid IE flickering
			if (parents.length < 2) {
				$(li).removeClass('active');
			}
		});
	});
});


// Newsletter text prompter
window.addEvent('domready', function(){
  if ($('eaNews')) {
	if ($('eaNews').value == '') {	$('eaNews').value = 'Email address...';	}
	$('eaNews').addEvent('focus', function() {
		if ($('eaNews').value == 'Email address...') {	$('eaNews').value = '';	}
	});
	$('eaNews').addEvent('blur', function() {
		if ($('eaNews').value == '') {	$('eaNews').value = 'Email address...';	}
	});
  }
});