(function ($) { //Initial load of page $(window).load(function () { // put your code here for what you want to do when the page loads. sizeContent(); }); //Every resize of window $(window).resize(sizeContent); //Dynamically assign height function sizeContent() { if (window.matchMedia('(min-width: 768px)').matches) { var newHeight = $("html").height() - $("#header").height() - $("#main").height() + "px"; $("footer").css("height", newHeight); var colHeight = $("#main>.row").height() + "px"; $("#main .region-sidebar-first").css("height", colHeight); $("#main .region-sidebar-second").css("height", colHeight); } } // Pages that require image before page header $().ready(function () { $(".page-node-4685 .page-header").insertAfter(".field-item>img"); $(".page-node-6400 .page-header").insertAfter(".field-item>img"); $(".page-node-4686 .page-header").insertAfter(".field-item>img"); $(".page-node-4689 .page-header").insertAfter(".field-item>img"); $(".page-node-4690 .page-header").insertAfter(".field-item>img"); }); // Hide "all day" text for events $().ready(function () { $(".date-display-start").html(function(i,t) { return t.replace(' (All day)','') }); }); })(jQuery);