window.addEvent('domready', function(){
	qm_create(1,false,0,0,true);
	qm_create(0,false,500,1000,false);
	setTopMenu(0);
	
	var effect = $('NEWS_title_a').effect('color', {duration: 1200});
	var periodical;
	var fx = function() {
		effect.start('#FFF').chain(function() {
			effect.start('#000');
		});
	}
	$$(['NEWS_title_a']).each(function(el) {
		fx();
		periodical = fx.periodical(12000);
	});

	var effect2 = $('fadelink2').effect('color', {duration: 600});
	var periodical2;
	var fx2 = function() {
		effect2.start("#0000FF").chain(function() {
			effect2.start("#FF0000");
		});
	}
	$$(['fadelink2']).each(function(el) {
		fx2();
		periodical2 = fx2.periodical(2500);
	});

	var list = $$('#HOME');
	list.each(function(element) {
		var fxx = new Fx.Style(element, 'opacity').set(0.001);
		var fx = new Fx.Styles(element, {duration: 600, wait: false});
		element.addEvent('mouseenter', function(){
			fx.start({
				'opacity': 1
			}).chain(function(){fx.start({'opacity': 0.001})});
		});
	});

	myShow = new Slideshow('HSSHOW', {hu: 'templates/default/img/', images: ['hsshow-01.jpg','hsshow-02.jpg','hsshow-03.jpg','hsshow-04.jpg','hsshow-05.jpg','hsshow-06.jpg','hsshow-07.jpg','hsshow-08.jpg','hsshow-09.jpg','hsshow-10.jpg','hsshow-11.jpg','hsshow-12.jpg','hsshow-13.jpg','hsshow-14.jpg','hsshow-15.jpg','hsshow-16.jpg','hsshow-17.jpg'], duration: [1000, 8000], height: 87, width: 366, type: 'pan'});

	box = new MultiBox('mb', {descClassName: 'multiBoxDesc', showNumbers: false});
});;
