window.onload = function() {
	jQuery('a').each(function(i) {
		if (jQuery(this).attr('class') == "active") ScrollToElement(this);
	});
}

function ScrollToElement(theElement){
	if (theElement == null) return;	     
	jQuery(theElement).focus(); 
	// var position = jQuery(theElement).offset();
	// window.scrollTo( theElement.offsetLeft,theElement.offsetTop);
	// jQuery("#contentmenu").scrollTop(position.top);
}


