window.addEvent('domready', function() {
	if ($('imageRotator')) {
		new Twiddler({'target':$('imageRotator')},{'delay':7000,'showNavigation':false});
	}
	if ($('productDescription')) {
		new SimpleTabs('productDescription', {
			'selector': 'h4'
		});
	}

	if ($('menu')) {
		$('menu').getElements('li.button').each( function(el) {
			if (el.getElement('ul.subMenu')) {
				el.getElement('a').addEvent('click', function(e) {
					var e = new Event(e);
					e.stop();

					new Fx.Reveal(el.getElement('ul.subMenu')).toggle();
				});
			}
		});
	}
});