(function($) {

$.ajaxSetup({ cache: false });

$(document).ready(function() {

// SHOW BLOG NAVIGATION WHEN LOGGED IN
if( $("#hsnavigation").length) {
    $("p.hk_menu").show();
}

  //Remove Home from Nav
  $("li.item:contains('Home')").addClass("nodisplay"); 
  $("a.SkinObject:contains('Home')").addClass("nodisplay"); 
  $("#foxboro_footer span.SkinObject:first").addClass("nodisplay");

  //Add footer content from html file
  $.get('/Portals/95635/footercontent.html', function(data) {
    $('#foxboro_footer').append(data);
  });

  //Write menu into footercontent
  $("#foxboro_footer div.clear").prependTo("#footerinner");

//Write bottomPane div dynamic adjustment
var divHeight = $("#foxboro_bottom").height() - 26;
$("#dnn_BottomPane > div").css("min-height", divHeight);

});

$(window).load(function() {

  //Point events feed links from google cal to site
  $('#calfeed h4 a').attr('href','/events/');

});

})(jQuery);
