function init() {
		
	$$('input', 'textarea', 'select').addEvents({
		'focus': function(){ this.addClass('hover');},
		'blur': function(){ this.removeClass('hover');}
	});
	
	$('container').getElements('input[type=radio]').setStyle('border', '0');


	$$('.external').addEvent('click', function(ev){
		window.open(this.href); new Event(ev).stop(); return; 
	});
		
	
	$$('#showproduct_imgs a.selectzoom').addEvent('click', function(e){ 
		new Event(e).stop();
		/* $E('img', 'showproduct').setProperty('src') = this.getProperty('href'); */
	});

	$$('a.nondispo').setOpacity(0.2);
	
	$$('.overtext').each(function(el){new OverText(el);});
	
	if( $('news_access')) {
		new viewer($$('#news_access-inner div.content'), {mode:'right'}).play(true);
	}	
};

window.addEvent('domready', init);
