// JavaScript Document
window.addEvent('domready', function(){
var accordion = new Accordion('h3.atStart', 'div.atStart', {
	opacity: false,
	display: false,
	fixedHeight:160,
	onActive: function(toggler, element){
		toggler.setStyle('color', '#ff3300');
	},
 
	onBackground: function(toggler, element){
		toggler.setStyle('color', '#222');
	}
}, $('accordion'));

accordion.togglers.each(function(toggler){
	toggler.addEvent('mouseover',function(){
	this.fireEvent('click');
	});
	
}); 

	$$('#accordion .TOGO').addEvent('click',function(){
		//alert('000'+this.id)
		if (this.id == 'HISTORY')
		location.href="main.html";
	});

	
	if ($('GALLERY_CONT') !=null){
		$$(' .CAT_TITLE').setOpacity(0.3);
		
					$$(' .CAT_BOX').addEvent('mouseenter',function(){
						var element = this.getFirst();
						var fx = new Fx.Styles(element,{duration:200, wait:true});
							fx.start({'opacity': 0.8,'margin-top':47,'height':35
							});
						
					});
					
					$$(' .CAT_BOX').addEvent('mouseleave',function(){
						var element = this.getFirst();
						var fx = new Fx.Styles(element,{duration:200, wait:true});
							fx.start({'opacity': 0.2,'margin-top':66,'height':15
							});
						
					});

		
	}
	
}); 