jQuery(window).load(function($) {
	/** 
	 * we don't do this before everything has loaded. Otherwise it might get a bit shaky
	**/
	var last;
	if (typeof(document.location.hash) == "string" && (last = document.location.hash.match(/last-(\d+)/)) ) {
		var $article 	= jQuery('div.article' + last[1] + ':first');
		if ($article.length > 0) {
			var destination	= $article.offset().top + $article.height() - 20;
			jQuery.scrollTo(destination);
		}
	}
});
jQuery(document).ready(function($) {
	/*
	$('.blocks').prepend('<div id="helper"></div>');
	*/

	$('.b_NewsDisplay:first').after('<div id="helper"></div>');
	$('#helper').append($('.blocks .onethird')).css('float', 'right').width(310);
});


