// Anima Enlaces...
$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".enlace").css("opacity","0.5");
		
// ON MOUSE OVER
$(".enlace").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});


$(function() {
	// ON MOUSE OVER
	$(".borde").hover(function () {										  
		$(this).animate({ borderTopColor: '#D1D1D1', borderLeftColor: '#D1D1D1', borderRightColor: '#D1D1D1', borderBottomColor: '#D1D1D1' }, 'fast');
	},
		
	// ON MOUSE OUT
	function () {	
		$(this).animate({ borderTopColor: '#ffffff', borderLeftColor: '#ffffff', borderRightColor: '#ffffff', borderBottomColor: '#ffffff' }, 'fast');
	});
});

