/* 
	solve the Jumplink to the beginning of the news section on the next page 
	by: Erich Manser, erich.manser@tele-select.at 
*/


jQuery.noConflict();
jQuery(document).ready(function($) {
    $(".browseLinksContainer a").each(function(){
    	$(this).attr("href", $(this).attr("href") + ($(this).attr("href").indexOf("?") == -1 ? "?" : "&" ) +  "#NewsBegin");
    });
  });

