﻿$(function () {

    var cookies = document.cookie;
    var i = cookies.indexOf("animatedfeedback");

    if (i == -1) {
        /*document.cookie = "animatedfeedback=1; path=/; domain=" + document.domain + ";";
        $("#feedbackLink").css("margin-top", "-50px");
        $("#feedbackLink").css("right", "0px");
        $("#feedbackLink").css("z-index", "-1");
        $("#feedbackLink").animate({ marginTop: '0px' }, 800, 'linear');
        $("#feedbackLink").css("z-index", "100");*/
    }
});


