jQuery(function(){
    var $ = jQuery;
	
	$('.rolldown').mouseenter(function(){
	  if($(this)	.find('.submenus').is(":hidden")){
		$(this)	.find('.submenus').show(200)
	  }
	})
	
	$('.rolldown').mouseleave(function(){
		$(this)	.find('.submenus').hide(200)					   
	})
	
	//以下は右側ログインメニュー
	$('#UMBottom').click(function(){
		 changeView();
	})
	
	$('#UMTop').click(function(){
		 changeView();
	})
	
	function changeView(){
	if ($("#UMcontent").is(":hidden")) {
			$('#UMcontent').slideDown(300);
 			$('.whenShown').show();
			$('.whenHidden').hide();
		 }else{	
 			$('.whenShown').hide();
			$('.whenHidden').show();
			$('#UMcontent').slideUp(300)
			
		 }
	}
})

