jQuery(function($) {
				
	if ($.browser.version>6.0) {
		$(document).pngFix();
	}
	
	//$("#roll-news ul").ticker("init",{
	$("#roll-news-inner").ticker("init",{
		delay:6000, 	// Delay between switching of elements
		speed:500, 		// Animation speed
		linked:true, 	// If stepping after last element will go to first or stop and stepping before first will goto last or stop
		selection:'li',	// The sub-selection to use for each element
		animations: {
			_in:'fadeIn',	// Animation used to fade in
			out:'fadeOut'	// Animation used to fade out
		}
	}).ticker("loop");
	
	$('a.tooltip1').cluetip({
		cluetipClass:'jtip',
		//sticky:true,
		//closeText: '<img src="/js/images/close.png" alt="close" />',
		arrows:true
	});
	
});