//Microsoft.Glimmer.OneWay
//<AnimationCollection FilePath="E:\_creative@work_\Dann\www\scripte\index.html.glimmer.js" xmlns="clr-namespace:GlimmerLib;assembly=GlimmerLib"><Animation Name="FadeText" EventType="load" Trigger="body"><Animation.Targets><Target Name=".text" Duration="1300" 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><Animation Name="Logo" EventType="load" Trigger="body"><Animation.Targets><Target Name="#logo" Duration="2000" Easing="linear" Callback="null"><Target.Effects><YScaleEffect CSSName="height" DisplayName="Y Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="163" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><YTranslationEffect CSSName="top" DisplayName="Y Position Animation" MaxValue="5000" MinValue="-5000" From="163px" To="0" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation><Animation Name="Logo2" EventType="load" Trigger="body"><Animation.Targets><Target Name="#logo" Duration="2500" Easing="linear" Callback="null"><Target.Effects><XScaleEffect CSSName="width" DisplayName="X Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="250" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation></AnimationCollection>
jQuery(function($) {
var timer;

function Logo(event)
{
     $("#logo").css("height","0");
     $("#logo").css("top","163px");
    $("#logo").animate({"height":163,"top":0},2000, "linear", null);
}
Logo();
});

