function scroll_down(){
$.noConflict();
jQuery(document).ready(function($) {
$('html, body').animate({
scrollTop : $("#bottom").offset().top
}, 1);
});
return false;
}
here "bottom" is the div tag id where you want to scroll to. For changing the animation effects, you can change the time from '1' to a different value