//Microsoft.Glimmer.OneWay
//<AnimationCollection FilePath="C:\wamp\www\Hempro\www\index.html.glimmer.js" xmlns="clr-namespace:GlimmerLib;assembly=GlimmerLib" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"><Animation Name="FadeLogo" EventType="[none]" Trigger="{x:Null}"><Animation.Targets><Target Name="#hempro_logo" Duration="2000" Easing="linear" Callback="DropNav"><Target.Effects><ModifyCSSEffect CSSName="display" DisplayName="Modify CSS Effect" MaxValue="5000" MinValue="-5000" From="0" To="block" IsStartValue="False" IsActive="True" IsAnimatable="False" IsExpression="False" FormatString="$({0}).css({1},{2});&#xD;&#xA;" 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="DropNav" EventType="[none]" Trigger="{x:Null}"><Animation.Targets><Target Name="#navigacija" Duration="1000" Easing="easeOutBounce" Callback="null"><Target.Effects><ModifyCSSEffect CSSName="display" DisplayName="Modify CSS Effect" MaxValue="5000" MinValue="-5000" From="0" To="block" IsStartValue="False" IsActive="True" IsAnimatable="False" IsExpression="False" FormatString="$({0}).css({1},{2});&#xD;&#xA;" RequiresJQueryPlugin="False" JQueryPluginURI="" /><YTranslationEffect CSSName="top" DisplayName="Y Position Animation" MaxValue="5000" MinValue="-5000" From="-365px" To="0" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation><Animation Name="DisplaySadrzaj" EventType="load" Trigger="{x:Null}"><Animation.Targets><Target Name="#sadrzaj" Duration="1500" Easing="swing" Callback="FadeLogo"><Target.Effects><XScaleEffect CSSName="width" DisplayName="X Scale Animation" MaxValue="5000" MinValue="-5000" From="0" To="340" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation></AnimationCollection>
jQuery(function($) {
var timer;
function FadeLogo(event)
{
     $("#hempro_logo").css("display","block");
     $("#hempro_logo").css("opacity","0");
    $("#hempro_logo").animate({"opacity":1},2000, "linear", DropNav);
}

function DropNav(event)
{
     $("#navigacija").css("display","block");
     $("#navigacija").css("top","-365px");
    $("#navigacija").animate({"top":0},1000, "easeOutBounce", null);
}

function DisplaySadrzaj(event)
{
     $("#sadrzaj").css("width","0");
    $("#sadrzaj").animate({"width":340},1500, "swing", FadeLogo);
}



DisplaySadrzaj();

});
