function opening()
{	
	var fx_fade = new Fx.Tween($('main_image_bw'), {duration: 3000, transition: Fx.Transitions.Quart.easeIn});
	var fx_dynamic = new Fx.Tween($('word_dynamic'), {duration: 750, transition: Fx.Transitions.Quart.easeOut});
	var fx_custom = new Fx.Tween($('word_custom'), {duration: 750, transition: Fx.Transitions.Quart.easeOut});
	var fx_solutions = new Fx.Tween($('word_solutions'), {duration: 750, transition: Fx.Transitions.Quart.easeOut});
	var fx_bullet1 = new Fx.Tween($('bullet1'), {duration: 750, transition: Fx.Transitions.Quart.easeOut});
	var fx_bullet2 = new Fx.Tween($('bullet2'), {duration: 750, transition: Fx.Transitions.Quart.easeOut});
	
	fx_fade.start('opacity', 0);
	fx_dynamic.start.pass(['bottom', 20], fx_dynamic).delay(500);
	fx_custom.start.pass(['bottom', 20], fx_custom).delay(1000);
	fx_solutions.start.pass(['bottom', 20], fx_solutions).delay(1500);
	fx_bullet1.start.pass(['bottom', 33], fx_bullet1).delay(2000);
	fx_bullet2.start.pass(['bottom', 33], fx_bullet2).delay(2500);

}

window.addEvent('domready', function() {
	$('domain_FRM').addEvent('submit', function(e) {
		e.stop();

		var log = $('log_res').empty();
		
		this.set('send', {onComplete: function(response) { 
			log.set('html', response);
		}});
		
		this.send();
	});

	var myTips = new Tips($$('.toolTipElement'), {
		offset: {'x': 10, 'y': 5},
		
		onShow: function(tip) {
			tip.fade('in');
		},
		
		onHide: function(tip) {
			tip.fade('out');		
		}
	});
		 
});
