﻿$(document).ready(function() {
    //These two functions remove the bottom border from the last module of each column
    //On the homepage template
    $('#homepage #column1 .module:last').each(function() {
        var cssObj = {
            'border': 'none'
        };
        $(this).css(cssObj);

    });

    $('#homepage #column2 .module:last').each(function() {
        var cssObj = {
            'border': 'none'
        };
        $(this).css(cssObj);

    });

    $('#header p:last').each(function() {
        var cssObj = {
            'margin-bottom': 0
        };
        $(this).css(cssObj);

    });

    $('#leftCol .module:last').each(function() {
        var cssObj = {
            'border-bottom': 'none'
        };
        $(this).css(cssObj);

    });
});