function ScrollPage(id, time){
	if($.browser.opera){
		$('html').animate({scrollTop: $(id).offset().top}, time);
	} else {
		$('html,body').animate({scrollTop: $(id).offset().top}, time);
	}	
}
