(function($){

$(document).ready(function(){
	
	$('#box1').each(function(){
		var s = $(this);
		var p = s.offset();
		var h = $(document).height() - p['top'] - 40;
		if ($.browser.msie)
			h += 40;
		s.height(h);
		if ($.browser.msie)
			h -= 40;
		$('.slider', this).height(h);
	});

	$('.slider').jScrollPane({
		showArrows: true,
		scrollbarWidth: 13,
		scrollbarMargin: 10
	});

});

})(jQuery);
