
function PositionLogo(){
  var pos = $("#colwrap").offset();  
  var width = $("#colwrap").width();
  //show the menu directly over the placeholder
  $("#logo").css( { "left": (pos.left+7) + "px", "top":(pos.top-109) + "px" } );
  //$("#logo").show();
}

$(document).ready(function() {
   PositionLogo();
});
 
window.onresize = function() {
   PositionLogo();
}
