//Microsoft.Glimmer.OneWay
//<AnimationCollection FilePath="C:\Users\Gordon\Desktop\nowe\js/freestyle.html.glimmer.js" xmlns="clr-namespace:GlimmerLib;assembly=GlimmerLib"><Animation Name="ActionName1" EventType="load" Trigger="#1"><Animation.Targets><Target Name="#1" Duration="1000" Easing="linear" Callback="null"><Target.Effects><YScaleEffect CSSName="height" DisplayName="Y Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="183" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><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="ActionName2" EventType="load" Trigger="#2"><Animation.Targets><Target Name="#2" Duration="1500" Easing="linear" Callback="null"><Target.Effects><YScaleEffect CSSName="height" DisplayName="Y Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="183" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><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="ActionName3" EventType="load" Trigger="#3"><Animation.Targets><Target Name="#3" Duration="2000" Easing="linear" Callback="null"><Target.Effects><YScaleEffect CSSName="height" DisplayName="Y Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="183" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><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="ActionName4" EventType="load" Trigger="#4"><Animation.Targets><Target Name="#4" Duration="2200" Easing="linear" Callback="null"><Target.Effects><YScaleEffect CSSName="height" DisplayName="Y Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="183" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><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="ActionName5" EventType="load" Trigger="h2"><Animation.Targets><Target Name="h2" Duration="1801" Easing="linear" Callback="null"><Target.Effects><XTranslationEffect CSSName="left" DisplayName="X Position Animation" MaxValue="5000" MinValue="-5000" From="0" To="320" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation><Animation Name="ActionName6" EventType="load" Trigger="img"><Animation.Targets><Target Name="img" Duration="600" 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="ActionName7" EventType="load" Trigger="#sklepy"><Animation.Targets><Target Name="#sklepy" Duration="1548" Easing="swing" Callback="null"><Target.Effects><XScaleEffect CSSName="width" DisplayName="X Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="800" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><YScaleEffect CSSName="height" DisplayName="Y Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="256" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation></AnimationCollection>
jQuery(function($) {
var timer;
function ActionName1(event)
{
     $("#1").css("height","0");
     $("#1").css("opacity","0");
    $("#1").animate({"height":183,"opacity":1},1000, "linear", null);
}

function ActionName2(event)
{
     $("#2").css("height","0");
     $("#2").css("opacity","0");
    $("#2").animate({"height":183,"opacity":1},1500, "linear", null);
}

function ActionName3(event)
{
     $("#3").css("height","0");
     $("#3").css("opacity","0");
    $("#3").animate({"height":183,"opacity":1},2000, "linear", null);
}

function ActionName4(event)
{
     $("#4").css("height","0");
     $("#4").css("opacity","0");
    $("#4").animate({"height":183,"opacity":1},2200, "linear", null);
}

function ActionName5(event)
{
     $("h2").css("left","0");
    $("h2").animate({"left":320},1801, "linear", null);
}

function ActionName6(event)
{
     $("img").css("opacity","0");
    $("img").animate({"opacity":1},600, "linear", null);
}

function ActionName7(event)
{
     $("#sklepy").css("width","0");
     $("#sklepy").css("height","0");
    $("#sklepy").animate({"width":800,"height":256},1548, "swing", null);
}

ActionName1();

ActionName2();

ActionName3();

ActionName4();

ActionName5();

ActionName6();

ActionName7();

});
