//liアニメーション


		$(function(){
			
			
			$("<p class=\"_genre_backGround\">&nbsp;</p>").insertBefore(".genre li a");		
			
			$(".genre li").hover(
			function(){
				$("._genre_backGround",this).fadeTo("fast",1);//animate({},"slow","swing");
				},
			function(){
				$("._genre_backGround",this).fadeTo("fast",0)
				}
		
				);
				
		});

