//Microsoft.Glimmer.OneWay
//<AnimationCollection FilePath="C:\Users\Guillermo\Desktop\ASTRID WEB\COMIDA\site\js\index.html.glimmer.js" xmlns="clr-namespace:GlimmerLib;assembly=GlimmerLib"><Animation Name="entrada" EventType="load" Trigger="#contenidoMenu"><Animation.Targets><Target Name="#logotipo" Duration="2917" Easing="easeInOutBounce" Callback="null"><Target.Effects><YTranslationEffect CSSName="top" DisplayName="Y Position Animation" MaxValue="5000" MinValue="-5000" From="-411px" To="28" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation><Animation Name="contenido" EventType="load" Trigger="#contenidoMenu"><Animation.Targets><Target Name="#contenidoMenu" Duration="2872" Easing="linear" Callback="null"><Target.Effects><OpacityEffect CSSName="opacity" DisplayName="Opacity Animation" MaxValue="1" MinValue="0" From="0" To="1" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation></AnimationCollection>
jQuery(function($) {
var timer;
function entrada(event)
{
     $("#logotipo").css("top","-411px");
    $("#logotipo").animate({"top":28},2917, "easeInOutBounce", null);
}

function contenido(event)
{
     $("#contenidoMenu").css("opacity","0");
    $("#contenidoMenu").animate({"opacity":1},2872, "linear", null);
}

entrada();

contenido();

});
