$('#CheckIn').datepicker({ showOtherMonths: true, showOn: 'button', buttonImage: '../style/icon-calendar.png', buttonImageOnly: true });
$('#CheckOut').datepicker({ showOtherMonths: true, showOn: 'button', buttonImage: '../style/icon-calendar.png', buttonImageOnly: true });

var pos = 0, spd = 0, timer;
function anim() { pos += spd; $('#scroll').scrollTop(pos); pos = $('#scroll').scrollTop(); timer = setTimeout("anim()", 50); }
$('#scroll-up').mouseover(function () { spd = -3; }).mouseout(function () { spd = 0; });
$('#scroll-down').mouseover(function () { spd = 3; }).mouseout(function () { spd = 0; });
anim();

$(document).ready(function () { $('.scroll-pane').jScrollPane(); });
