
//09.04.21 edited by odda
  $(document).ready(function() {
		$("p:empty").remove();
		 $("#top_visual a").hover(function(){
			$(this).css("background-position","0 -80px"); 
			$(this).css("cursor","pointer"); 
		},function(){
			$(this).css("background-position","0 0");
			$(this).css("cursor","default"); 
			});
			
		 $("#top_visual .btn1").hover(function(){
			$("#top_visual").css("background-position","0 0");
		},function(){
			$(this).css("cursor","default"); 
			});
 		$("#top_visual .btn2").hover(function(){
			$("#top_visual").css("background-position","0 -350px"); 
		},function(){
			$(this).css("cursor","default"); 
			});
 		$("#top_visual .btn3").hover(function(){
			$("#top_visual").css("background-position","0 -700px"); 
		},function(){
			$(this).css("cursor","default"); 
			});
 		$("#top_visual .btn4").hover(function(){
			$("#top_visual").css("background-position","0 -1050px"); 
		},function(){
			$(this).css("cursor","default"); 
			});
		$("div.widget_quiz dt, .faq dt, #form h3").hover(function(){
			$(this).css("cursor","pointer"); 
			$(this).css("background-color","#f90"); 
		},function(){
			$(this).css("cursor","default"); 
			$(this).css("background-color","#fff"); 
			});
		$("div.widget_quiz dt, .faq dt, #form h3").click(function(){
			$(this).next().slideToggle("1000");
			});
		$(".round").corner("10px");
		$("ul.side_menu li:not(:has(ul))").addClass("no_sub");
		$(".footer_contact, .schedule dd").corner("5px");
		$(".ratio tr:even").css("background-color", "#FFE6BF");
		$(".ratio tr:odd").css("background-color", "#f8f8f8");
		$(".ratio tr th:first").css("width", "300px");
 });
 