﻿
jQuery(function() {

    Arbetsmiljo.initStyles();

});


var Arbetsmiljo = {

    /*
    *   Set specific styles because IE does not support css3 selectors
    */
    initStyles: function() {

        var nbrOfRows = jQuery("#column .startpage-puff-row").length;

        //Pick the second last row
        jQuery("#column .startpage-puff-row:eq("+ Math.max(0, nbrOfRows - 2) +")").find(".box").addClass("last");

    }
};
