function autoWidth(){var a=$("#image-content");var b=5;a.children("img").each(function(){b=b+$(this).width()+10});a.width(b)}function autoHeight(){var a=$("#image-content");var b=$(window).height()-80;if(b>800){b=800}a.parent().height(b+20);a.children().height(b)}function isTouchDevice(){return"ontouchstart"in document.documentElement}window.onload=autoWidth;$(document).ready(autoHeight);$(window).resize(function(){autoHeight();autoWidth()});$(function(){var a=$("#image-content-container");var b=$("#scroll-left-overlay");var c=$("#scroll-right-overlay");if(isTouchDevice()){touchScroll("image-content-container")}else{var d=10;var e=5;var f=10;var g=1;c.mousedown(function(){g=f});c.mouseup(function(){g=1});c.hover(function(f){g=1;b.removeClass("scrollingHotSpotLeftVisible");c.addClass("scrollingHotSpotRightVisible");c.css("cursor","pointer");rightInterval=window.setInterval(function(){if(k()){a.scrollLeft(a.scrollLeft()+e*g)}else{h(rightInterval)}},d)},function(){h(rightInterval)});function h(a){c.removeClass("scrollingHotSpotRightVisible");c.css("cursor","auto");g=1;window.clearInterval(a)}b.mousedown(function(){g=f});b.mouseup(function(){g=1});b.hover(function(f){g=1;c.removeClass("scrollingHotSpotRightVisible");b.addClass("scrollingHotSpotLeftVisible");b.css("cursor","pointer");leftInterval=window.setInterval(function(){if(j()){a.scrollLeft(a.scrollLeft()-e*g)}else{i(leftInterval)}},d)},function(){i(leftInterval)});function i(a){b.removeClass("scrollingHotSpotLeftVisible");b.css("cursor","auto");g=1;window.clearInterval(a)}a.hover(function(a){if(j()){b.addClass("scrollingHotSpotLeftVisible")}if(k()){c.addClass("scrollingHotSpotRightVisible")}},function(){b.removeClass("scrollingHotSpotLeftVisible");c.removeClass("scrollingHotSpotRightVisible")});function j(){return a.scrollLeft()>0}function k(){var b=a.scrollLeft();var c=$("#image-content").width()-a.width();return b<c}}})
