
(function($){
	$(function(){
    	$("#doc_wrapper dt.ic").hover(function() {
        	$(this).stop().animate({ "top": "-10px" }, 250);
        	//$(this).parent().find("span").stop().animate({ marginTop: "18px", opacity: 0.25 }, 200);
			$(this).parent().find("dt.shadow img").stop().animate({ width: "140px", height: "40px", top: "10px", left: "3px", opacity: 0.25 }, 250);
    	},function(){
        	$(this).stop().animate({ "top": "0px" }, 250);
			//$(this).parent().find("span").stop().animate({ marginTop: "1px", opacity: 1 }, 300);
			$(this).parent().find("dt.shadow img").stop().animate({ width: "149px", height: "51px", top: "0", left: "0", opacity: 1 }, 250);
    	});
	});
})(jQuery);

