﻿$(function() {
    // make supplement absolute positioned if the bottom of content is lower than the supplement
    $("#side-navigation .freeform").makeAbsIfNotBottom($('#content'));

    $("#content p:first").addClass("first-p");

    $('<h2><span>Related Information</span></h2>').prependTo('#intro div.subnavigation div');

    $("#side-navigation .eventswrapper ul")
           .append("<li><a href=\"/events.be\">See all events</a></li>")
           .find("li:last")
           .css("padding-left", "55px")
           .css("padding-top", "12px");
           
    // make image in content positioned bottom if side list is lower than content
    $("#content .SingleImage1_plcContent1 img").makeAbsIfNotBottom($('#side-navigation .freeform'));

    //$('#side-navigation, #content').equalHeight();
    $(".landing #left-container, .landing #side-navigation").equalHeight();
});
