// JavaScript Document
$(document).ready(function(){
	 $(".panel").hover(
		  function () {
			var el = $(this).find(".p_bottom img");
			el.stop(true, true);
			el.fadeOut(400);
		  }, 
		  function () {
			var el = $(this).find(".p_bottom img");
			el.stop(true, true);
			el.fadeIn(400);
		  }
	  );
});