$(function() {
			// links externos en nueva pagina
			$("a[href^='http://']:not([href*='"+location.hostname+"'])").attr('target', '_blank');
			
			// Animacion logo y menu
			$("div#logo a, ul#nav li a").css("opacity","0").hover(function() {
				// on mouse over
				$(this).stop().animate({ opacity: 1 }, 400);
			},
				// on mouse out
			function() {
				$(this).stop().animate({ opacity: 0 }, 400);
			});
			
			// link nudge del footer
			$('div#navegacion a, div#conecta a').hover(function() {  
				$(this).stop().animate({ marginLeft: '5px' }, 200);  
				},
			function() {  
				$(this).stop().animate({ marginLeft: 0 }, 200);  
			});
			// bg boton submit
			$('input#submit, input#contactsubmit').mousedown(
				function(){$(this).css('backgroundPosition', 'top left')
			}).mouseup(
				function(){$(this).css('backgroundPosition', 'bottom left')
			});
});
