﻿var moveRight = function() {
    //get the position of the placeholder element
    var pos = $("#placeholder").offset();
    //show the menu directly over the placeholder
    $("#ch-floatcolumn").css({ "left": (pos.left + 3) + "px", "top": pos.top + "px" });
    $("#ch-floatcolumn").show();
};
$(document).ready(function() {
    moveRight();
});
$(window).resize(function() {
    moveRight();
});

