// JavaScript Document

$(document).ready(function() {
	
	$("#header .redes a").hover(
		function () {
			$(this).children("img").animate({"margin-top": "-=5px"}, "fast");
		}, 
		function () {
			$(this).children("img").animate({"margin-top": "+=5px"}, "fast");
		}
	);
	
		
});

