$(document).ready(function() {
$('.talksButton:has(p#topA)').click(function () {
if ($('#scroll').css('margin-top') == 360) { $('#scroll').animate({marginTop:'+=0'}); }
else {$('#scroll').animate({marginTop:'+=35'}); }
});
$('.talksButton:has(p#bottomA)').mousedown(function () {
if ($('#scroll').css('margin-top') <= -350) { $('#scroll').css({marginTop:'-350'}); }
else {$('#scroll').animate({marginTop:'-=35'}); }
});
});