
$(document).ready(function(){

  $('.hist').hide();
  $('.hist:first').show();
  $(".hist .m_t_20 span").click(function () {
    $(this).parents(".hist").hide();
    if ($(this).parents(".hist").next(".hist").length!=0) {
  	$(this).parents(".hist").next(".hist").show();}
  	else{$('.hist:first').show();}
  });

$("p.click_open").click(function () {
    $(this).next("div.click_open").toggle();
});
 
$('li.level1').hover(function() {
	$(this).next('li.level1').css({'z-index':'-1','position':'relative'});
	$(this).css({'z-index':'1','position':'relative'});
	$('.menu_orange', this).show();
}, function() {
	$('.menu_orange', this).hide();
	$(this).next('li.level1').css({'z-index':'1','position':'relative'});
});
 
});

