$(document).ready(function() {

    $("body").append("<div id='surveyPop' style='text-align: center; width: 100%; border: 1px solid gray; padding: 5px 15px 5px 15px; font-size: 110%; top: -61px; left: 0px; background: lime; color: black; position: absolute; overflow: hidden;'><h1>Quick PotBS Companion Survey</h1>Do you have 5 minutes to answer 10 simple questions to help improve PotBS-Companion? [ <a href='http://www.surveymonkey.com/s/CNPGBB9' target='new'>Yes, take the survey</a> ]&nbsp;[ <a href='#' id='surveyClose'>No thanks (Remove this window)</a> ]</div>");
    
    setTimeout( "$('#surveyPop').animate({top:'-10px'},500)", 1000 );
    
    $("#surveyClose").click(function() {        
        $("#surveyPop").animate({top:'-61px'},500).preventDefault();
    })
})
