<!--

$().ready(function() {
	$('#slider-news').fitToWidth(); // Resize width to maximum available width.
	$('#slider-news').width(($('#slider-news').width() - 2) + 'px'); /* Subtract 2 px to correct issue with IE7. */
	$('#slider-news > ul > li').css({
		width:$('#slider-news').width() + 'px', // Copy width from container DIV.
		height:'300px' // Hardcoded.
	});
	
	$('#slider-news').sudoSlider({ 
        prevNext:false,
        numeric:false,
		/*numericAttr:'class="slider-news-controls"',*/
        speed:'400',
        insertAfter:false,
		auto:true,
		pause:'8000',
		clickableAni:true,
		history:false,
        continuous:true,
		autoheight:false,
		customLink:'#slider-news-links2 a'
    });
	$('#slider-news > ul > li').scroll(function() { // Handle scroll events for slider content "panes".
		$('#slider-news').sudoSlider('stop'); // Stop automatic sliding.
	});
	
});

// !-->

