$(document).ready(function() {
  setEqualHeights();
}); // end of document.ready function

$(window).bind("load", function() { 
  $("div#myInstantGallery").slideView(); 
});

$(window).bind("load", function() { 
    $("div#my-folio-of-works").slideViewerPro({ 
        thumbs: 6,  
        autoslide: true,  
        asTimer: 3500,  
        typo: true, 
        galBorderWidth: 0, 
        thumbsBorderOpacity: 0,
        thumbsPercentReduction: 16, 
        buttonsTextColor: "#707070", 
        buttonsWidth: 40, 
        thumbsActiveBorderOpacity: 0.8, 
        thumbsActiveBorderColor: "aqua", 
        shuffle: false 
    }); 
}); 
  
$(window).load(function () {
/*
  // jquery that loads when the window loads, when all the images are ready...
*/
});

function setEqualHeights() {
  var h1 = $('#redboxleft').height();
  var h2 = $('#redboxright').height();   
  if(h1 > h2){
    $('#redboxright').css({height:h1});  
  } else {
    $('#redboxleft').css({height:h2});
  }
}
