$(document).ready(function(){
	
	$('a[href^=http]').click( function() { window.open(this.href); return false; });

	$('.redes a').hover(function(){
		$(this).find('img').stop().animate({ top:'-42px'},250)
	},function(){
		$(this).find('img').stop().animate({ top:'0'},250)
	})
	
		
});


