$(function() {
    $('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth:14, dragMinHeight:16, dragMaxHeight:16, arrowSize:17});
});

function rollOver(img) {
    img.src = img.src.substring(0, img.src.length-4)+"_sel.png";
}

function rollOut(img) {
    img.src = img.src.substring(0, img.src.length-8)+".png";
}

/*function jumpToNextField(cnt, itself, next) {
    if(itself.value.length==cnt) {
        itself.form.elements[next].focus();
        itself.form.elements[next].select();
    }
}*/

