I have problem with the following code.
$(document).ready(function(){
$('#icon2').click(
function(){ $('#st1').animate({top:'-10px'},500);}
);
$('#down1').hover(
function(){ $('#st1').stop(true, false).animate({bottom:'+=250px'},10000,'linear');},
function(){ $('#st1').stop(true, false).animate({bottom:'-=0px'},10000,'linear');}
);
});
From the below picture,
#down1 is the down-arrow below the text
#icon2 is the about icon

What I am trying to achieve is when I hover on the down-arrow, the text should scroll down and when I mouseout, the scrolling should stop. And when I click on about icon, the text should scroll back to its default position.
But the problem here is only one effect is working either hover or click but not both at once.
Please help where I am doing it wrong with some detailed explanation if possible.