// JavaScript Document
$(document).ready( function() { 
							
	$(".wam").hover( function() {
		$(this).stop().animate({"top": "25px"}).find(".arrow").fadeOut("hover");
	},function(){
		$(this).stop().animate({"top": "190px"}).find(".arrow").fadeIn("hover");
	});
							
});

