window.addEvent('domready',function(){
/* Submenu */
	var list = $$('#submenu li a');
		list.each(function(element) {
			var fx = new Fx.Morph(element, {duration:200, wait:false});
			element.addEvent('mouseenter', function(){
				fx.start({
					'margin-left': 10
				});
			});
			element.addEvent('mouseleave', function(){
				fx.start({
					'margin-left': 0
				});
			});
		});
		
/* Tips */
	$$('a.tips').each(function(element,index) {
		var content = element.get('title').split('::');
		element.store('tip:title', content[0]);
		element.store('tip:text', content[1]);
	});
	var tips = new Tips($$('.tips'), {
	});
	
/* Smooth Scroll */
	var mySmoothScroll = new SmoothScroll({
		wheelStops: false,
		duration: 1800
	});

/* Menu Marcas */								
	var nS1 = new noobSlide({
			box: $('box'),
			items: [0,1,2,3,4,5,6,7,8,9,10,11],
			size: 138,
			autoPlay: true,
			interval: 5000,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Quad.easeInOut,
				wait: false
			},
			addButtons: {
				previous: $('prev'),
				next: $('next')
			}
		}); 

});
