$(document).ready(function(){		var scrollPane = $('#pressholder'),        scrollableHeight = scrollPane.height() - scrollPane.parent().height() || 0;		  	$("#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});      }    });		var scrollPaneawards = $('#awardsholder'),        scrollableHeightawards = scrollPaneawards.height() - scrollPaneawards.parent().height() || 0;		  	$("#awards-slider").slider({		animate: true,      orientation: "vertical",      range: "max",      min: 0,      max: scrollableHeightawards,      value: scrollableHeightawards,      slide: function(event, ui) {        scrollPaneawards.css({top: ui.value - scrollableHeightawards});      }    });	});
