window.addEvent('domready', function() {
	if ($('imageRotator')) {
		new Twiddler({'target':$('imageRotator')},{'delay':5000,'showNavigation':false});
	}
	if ($('productDescription')) {
		new SimpleTabs('productDescription', {
			'selector': 'h4'
		});
	}

	if ($('menu')) {
		$('menu').getElements('li.button, li.level0').each( function(el) {
			if (el.getElement('ul')) {
				el.getElement('a').addEvent('click', function(e) {
					var e = new Event(e);
					e.stop();

					new Fx.Reveal(el.getElement('ul')).toggle();
				});
			}
		});
	}

	$$("span").each(function(b){if(b.get("text").contains("[at]")){var a=b.get("text").replace(" [at] ","@");b.set("html",'<a href="mailto:'+a+'">'+a+"</a>")}});

	if ($('emailStory')) {
		$('emailStory').set('html','<a href="mailto:info@vineherbal.co.uk">' + $('emailStory').get('text') + '</a>');
	}

});
