﻿jQuery(document).ready(function(){
  var allBoxes = jQuery(".box");
  var margin = 15;
  var heightCount = 0;
  for(var i = 0; i < allBoxes.length; i++){
    var thisBox = jQuery(allBoxes[i]);
    var thisBoxHeight = thisBox.outerHeight();
    thisBox.css("top", heightCount);
    heightCount += margin + thisBoxHeight;
  }
});

//Printvenlig side

function printPage(styleNo) {
  if (location.href.indexOf("?") > -1) {
    printWin = window.open(location.href + '&Printerfriendly=' + styleNo, 'printit', '');
  } else {
    printWin = window.open(location.href + '?Printerfriendly=' + styleNo, 'printit', '');
  }
}


