loading external html in a DIV question

loading external html in a DIV question

Hi everybody,
I´m loading a div of an external html (#right_in) into a div (#right) in my main movie this way:

var toLoad = divobj.id+'.html #right_in';

function loadContent() {
$('#right').load(toLoad);
showNewContent();
}
function showNewContent() {
$('#right').fadeIn(800);
}


Is it possible to specify that the DIV has to load always at y=0, ie from the top?
Because when I load another external div into my main div firefox keeps the latest position (if I scrolled before it loads the new page at that point).

Any help is very appreciated!
Thanks in advance