/*

Main Javascript for jQuery Realistic Hover Effect
Created by Adrian Pelletier
http://www.adrianpelletier.com

*/
	
$(document).ready(function() {

	// 鼠标滑过按钮，动画开始
	
	$("#erp_five .bag .column").hover(function() {
		var e = this;
		
		/*$(e).find("img").slideUp('normal');
		$(e).find("span").css("z-index","1");*/
		/*$(e).find("img").stop().animate({ marginTop: "-34px" }, 250, function() {
			$(e).find("img").animate({ marginTop: "-30px" }, 250);
			
		});
		$(e).find("span").stop().animate({ zIndex:"1"}, 250);*/
		$(e).find("img").animate({ marginTop: "-34px" }, 250);
	},function(){
		var e = this;
		/*$(e).find("img").stop().animate({ marginTop: "4px" }, 250, function() {
			$(e).find("img").animate({ marginTop: "0px" }, 250);
		});
		$(e).find("span").stop().animate({ zIndex:"-1"}, 250);*/
		
		$(e).find("img").animate({ marginTop: "-0px" }, 250);
	});
});
