jQuery(document).ready( function() {

// Sidebar Widgets frabige Linie unten
jQuery('ul.fundus li:last-child').css({'border-bottom':'1px solid #F29318'});
jQuery('ul.top-stories li:last-child').css({'border-bottom':'1px solid #B6BDBF'});

//ToTop-Scrollen animiert
if (jQuery.browser.opera) {
	var target = 'html';
} else {
	var target = 'html,body';
}

jQuery('#totop').click(function() {
	jQuery(target).animate({scrollTop: '0px'}, 500, 'swing');
	return false;
});

//Next
 
});

