$(document).ready(function(){   	
    $("#phoneMenu").mouseover(function(){
	  $("#telefono").css({"position":"absolute","top":"5px", "border":"1px solid #e4e0e0"});	
      $("#telefono").animate({ 
        width: "350px",
		height: "30px",
        opacity: 0.8,
		marginLeft: "2in",
        fontSize: "1.3em"
      }, 300 );
});
$("#phoneMenu").mouseout(function(){
      $("#telefono").animate({ 
        width: "0%",
		height: "0%",
        opacity: 0,
        marginLeft: "0",
        fontSize: "0", 
        borderWidth: "0px"
      }, 300 );
}); 
$("#mailMenu").mouseover(function(){
	  $("#correo").css({"position":"absolute","top":"5px", "border":"1px solid #e4e0e0"});	
      $("#correo").animate({ 
        width: "350px",
		height: "30px",
        opacity: 0.8,
		marginLeft: "2in",
        fontSize: "1.3em"
      }, 300 );
});   
$("#mailMenu").mouseout(function(){
      $("#correo").animate({ 
        width: "0%",
		height: "0%",
        opacity: 0,
        marginLeft: "0",
        fontSize: "0", 
        borderWidth: "0px"
      }, 300 );
    });
});
  

