$(document).ready(function(){//ADDED SCROLLER EVENTS//END		var scrollPane = $('#historyholder'),        scrollableHeight = scrollPane.height() - scrollPane.parent().height() || 0;				var checkheight=scrollPane.height();		  	$("#content-slider").slider({		animate: true,      orientation: "vertical",      range: "max",      min: 0,      max: scrollableHeight,      value: scrollableHeight,      slide: function(event, ui) {        scrollPane.css({top: ui.value - scrollableHeight});      }    });		if (checkheight < 420){		$("#historyslider").hide();		}							var scrollPaneb = $('#historyholder'),     scrollableHeightb = scrollPaneb.height() - scrollPaneb.parent().height() || 0;				var checkheightb=scrollPaneb.height();		  	$("#news-slider").slider({		animate: true,      orientation: "vertical",      range: "max",      min: 0,      max: scrollableHeightb,      value: scrollableHeightb,      slide: function(event, ui) {        scrollPaneb.css({top: ui.value - scrollableHeightb});      }    });		if (checkheightb < 360){		$("#newsslider").hide();		}				//jQuery('#historyholder').jSlideTouch({direction:'V'});});
