//Microsoft.Glimmer.OneWay
//<AnimationCollection FilePath="C:\Users\Justyne\Documents\sanchezsmiles\jtest.html.glimmer.js" xmlns="clr-namespace:GlimmerLib;assembly=GlimmerLib" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"><Animation Name="beemove" EventType="load" Trigger="{x:Null}"><Animation.Targets><Target Name="#bee" Duration="4332" Easing="swing" Callback="beemoveback"><Target.Effects><YTranslationEffect CSSName="top" DisplayName="Y Position Animation" MaxValue="5000" MinValue="-5000" From="0" To="228" IsStartValue="False" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><XTranslationEffect CSSName="left" DisplayName="X Position Animation" MaxValue="5000" MinValue="-5000" From="1051px" To="-92" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation><Animation Name="beemoveback" EventType="load" Trigger="{x:Null}"><Animation.Targets><Target Name="#bee2" Duration="4332" Easing="swing" Callback="null"><Target.Effects><YTranslationEffect CSSName="top" DisplayName="Y Position Animation" MaxValue="5000" MinValue="-5000" From="183px" To="137" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /><XTranslationEffect CSSName="left" DisplayName="X Position Animation" MaxValue="5000" MinValue="-5000" From="-92px" To="1051" IsStartValue="True" IsActive="True" IsAnimatable="True" IsExpression="False" FormatString="" RequiresJQueryPlugin="False" JQueryPluginURI="" /></Target.Effects></Target></Animation.Targets></Animation></AnimationCollection>
jQuery(function($) {
var timer;
function beemove(event)
{
     $("#bee").css("left","1051px");
    $("#bee").animate({"top":228,"left":-92},4332, "swing", beemoveback);
}

function beemoveback(event)
{
     $("#bee2").css("top","183px");
     $("#bee2").css("left","-92px");
    $("#bee2").animate({"top":137,"left":1051},4332, "swing", null);
}

beemove();

beemoveback();

});
