var ua = navigator.userAgent;

if ( ($.browser.opera) && ($.browser.version<10) ) {
	// do nothing
} else {

jQuery(function(){
	jQuery("#world > a, #system > a, #chara > a, #movie > a, #special > a").each(function(index){
		var $this = jQuery(this);
		if( $this.parent().attr("class") != 'active' ) {
			$this.next().hide();
		}
		$this.click(function(){
			var params = {height:"toggle", opacity:"toggle"};
			jQuery(this).next().animate(params).parent().siblings()
				.children("ul:visible").animate(params);
			return false; 
		});
	});
});

}
