﻿	window.addEvent('domready', function(){ 
		new SmoothScroll({duration: 900}); 
		var tip1 = new Tips($$('.TipImg'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 300, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(0.6);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		},
		fixed: true
	});
	var tip1 = new Tips($$('.TipNav'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 200, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		},
		offsets: {'x': 0, 'y': -110},
		className: 'toolNav'
	});
});
 