function ticker() {	jQuery('#img li').css({opacity: 0.0});	jQuery('#img li:first').css({opacity: 1.0});	setInterval('rotate()',4500);}
function rotate() {	var current = (jQuery('#img li.show')?  jQuery('#img li.show') : jQuery('#img li:first'));var next = ((current.next().length) ? ((current.next().hasClass('show')) ? jQuery('#img li:first') :current.next()) : jQuery('#img li:first'));	
	next.css({opacity: 0.0})	.addClass('show')	.animate({opacity: 1.0}, 1000);	current.animate({opacity: 0.0}, 1000)	.removeClass('show');};jQuery(document).ready(function() {	ticker();});