jQuery(document).ready(function () {
    jQuery(".survey").click(function () {
        jQuery("#survey").toggle();

    });
    /*var loc = window.location.toString();

    if (loc.indexOf("index.aspx")!=-1) { jQuery(".survey").show(); }*/
});

