﻿$(document).ready(function() {

    var hasVisited = '';

    if ($.cookie('visited') == "true") {
        hasVisited = 'true';
    };

    $('#home-flash').flash({
        src: '/AmConn.swf',
        width: 790,
        height: 320
    });

    /*    src: '/flash-home-featured.swf',
    
        flashvars: { visited: hasVisited , xmlPath: '/xml/homepagexml.aspx'}
        */

    $("#home-callout-share-story a").hover(
        function() {
            $(this).stop().animate({ "opacity": "0" }, "slow");
        },
        function() {
            $(this).stop().animate({ "opacity": "1" }, "slow");
        });

    $.cookie('visited', 'true');

});
