﻿function SetupBuildingSlider(sliderWidth,sliderHeight) {
    $(document).ready(function() {
        $("div#sliderWrap").jFlow({
            slides: "#slides",
            width: sliderWidth + "px",
            height: sliderHeight + "px",
            auto:true
        });
        $(".tooltip").css("width", sliderWidth + "px");

    });
}

function resize(obj, w, h) {
    var t = new Image();
    t.src = obj.src;

    if (t.width >= t.height) {
        obj.width = w;
    } else {
        obj.height = h;
    }
}
