jQuery.noConflict();

jQuery(document).ready(function(){

	/* jump to news in list and show it */
	var pos = document.URL.lastIndexOf("#");
	var itemId = document.URL.slice(pos + 1, document.URL.length);
	toggleNews(jQuery("#" + itemId).next());
});