//
//	hover時のcss設定
//

$(function() {

	$("div#list_disco dl.entry dd").hover(
	
		function(){
			$(this).css("background-color","#ffd4e4");
		}, 
		function(){
			$(this).css("background-color","transparent");
		}
	);
	
});

// -- error --
// 
//$(function() {
//
//	$("div#list_disco dl.entry dt").hover(
//	
//		function(){
//			$("div#list_disco dl.entry dd").css("background-color","#ffd4e4");
//		}, 
//		function(){
//			$("div#list_disco dl.entry dd").css("background-color","transparent");
//		}
//	);
//	
//});


// dd a ------------------

$(function() {

	$("div#list_disco dl.entry dd").hover(
	
		function(){
			$("div#list_disco dl.entry dd a").css("background","#ffffff");
		}, 
		function(){
			$("div#list_disco dl.entry dd a").css("background","#f9f6f2");
		}
	);
	
});

// -- error --
//
//$(function() {
//
//	$("div#list_disco dl.entry dd").hover(
//	
//		function(){
//			$("div#list_disco dl.entry dt a img").css("border-color","#ff4499;");
//		}, 
//		function(){
//			$("div#list_disco dl.entry dt a img").css("border-color","#e5d8d0;");
//		}
//	);
//	
//});
