
$(document).ready(function(){ 	
jQuery.fx.interval = 1;
$('.operainfo').css({'display': 'none'});   

	$('li.move a').click(function (ev) {	
	 var baseurl = $('base').attr('href');
	 ev.preventDefault();
	 var $self=$(this);
     $(this).parent().siblings().children('ul.more').slideUp(300);      
	 $(this).parent().siblings().children('li.move').removeClass('act');
     $(this).next().slideDown(300, function(){document.location.href = baseurl+$self.attr('href');});

	});
	
	$('div.logo a').click(function (ev) {
	var baseurl = $('base').attr('href');
	ev.preventDefault();
	var $self=$(this);
	$('li').removeClass('act');
	$('ul.more').children().removeClass('act');
	$('ul.more').hide(200, function(){document.location.href = baseurl+$self.attr('href');});
 	});

});

