$(document).ready(function() {
	var total_width = 0 ;
	
	$('#ticker ul li').each(function() {
		total_width = total_width + $(this).outerWidth() ;
	}) ;
	if(total_width > 800)
	{
		$('#ticker ul').webTicker() ;
	}
	
	
}) ;
