$(document).ready(function() {
	 
     $('.hover').hover(function()
     {
     $(this).children("span").animate( { marginLeft: "5px" }, 200  );
     },
     function()
     {
        $(this).children("span").animate( { opacity: 1.0, marginLeft: "0px" }, 200  );
     });
	 
	 $('.hover_h').hover(function()
     {
     $(this).children("span").animate( { marginTop: "-2px" }, 200  );
     },
     function()
     {
        $(this).children("span").animate( { opacity: 1.0, marginTop: "0px" }, 200  );
     });
	
});
