runCluetip()
setToggleDropdown()

function runAtRefresh() {
    runCluetip();
  
}

function runCluetip() {

    $(document).ready(function() {

        $('.show-workspaces').cluetip({
            local: true,
            cluetipClass: 'jtip',
            arrows: true,
            dropShadow: true,
            hoverIntent: false,
            sticky: true,
            mouseOutClose: true,
            closePosition: '',
            closeText: ''
        });

    });

}

function setToggleDropdown() {

    $(".search-more-options").hide();

    $(".more-options a").click(function() {
        $(".search-more-options").toggle("slow");
        if ($("#moreOptionsTest").html() == "more options") {
            $("#moreOptionsTest").html("less options")
        }
        else {
            $("#moreOptionsTest").html("more options")

        }
        return false;
    })
}
