$(function() {          
    $("div.scrollable").scrollable({vertical:true, size: 1});     
}); 
$(document).ready(function(){
	$('#promoLine1').hover(function(){
		$("div.scrollable").scrollable().seekTo(1);
	});
	$('#promoLine2').hover(function(){
		$("div.scrollable").scrollable().seekTo(2);
	});
	$('#promoLine3').hover(function(){
		$("div.scrollable").scrollable().seekTo(3);
	});
	$('#promoLine4').hover(function(){
		$("div.scrollable").scrollable().seekTo(4);
	});
});