<!--item鼠标移上换图JS-->
function showA(obj){
	obj.src="images/blank.gif";
	//obj.style.zIndex="11";
	//obj.style.display="none";
	//obj.style.visibility="hidden";
}

function showB(obj){
	obj.src="images/itemBg_over.png";
	obj.style.zIndex="-11";
	//obj.style.display="block";
	//obj.style.visibility="visible";
}


//使用jquery换图(good)
(function($){
	$(function(){
		$(".item").hover(function(){
			$(".normal_bg:first",this).attr("src","images/itemBg_down.png")
		},
		function(){
			$(".normal_bg:first",this).attr("src","images/itemBg_green.png")
		})
		
		
		$(".item").hover(function(){
			$(".over_bg:first",this).attr("src","images/itemBg_over.png")
		},
			function(){
				$(".over_bg:first",this).attr("src","images/blank.png")//比须使用blank.png 格式，否则IE6下fix不会作用
			}
		)

	});
})
(jQuery)

//效果不正常，需要仅当前ITEM DIV下的.normal_bg改变SRC
$(document).ready(function() {
	//$(".active .normal_bg").attr("src","images/icon_music.png")
});

