questions related to events..

questions related to events..


hi
i m new to jquery and i have just started learning jquery...
i have bit of questions in events of jquery...
i want to give effects to my divs using jquery on page load.
so i tried this ..
i have two divs and i want to give effect to this two divs...main and
second are the divs...
$(document).ready(function(){
$("#main").show("slow");
$('#second').show('clip',{ method: 'clip', direction:
'horizontal' });return false;
});
<div id="main" style="display:none;">content</div>
<div id="testimonial_e" style="display:none;">content</div>
this code works but both divs load at the same time ...
i want to know how i can load divs at a time....
like first main div loads then the second div...
i also wanted to know how i can give effect to a certain links like if
user clicks on the link first divs effect will hapen and then the page
will redirect to links url.. can anyone tell me how i can achieve
this? if i give effect to .click event then it will directly redirect
to the given link without effects being shown...