var $ss_active = 0;
jQuery.noConflict();
function slideShow($current) {
	jQuery(document).ready(function(){
		$total = jQuery(".images .item").size();
		if ($total > 1)
		{
			if ($current >= $total) $current = 0;
			jQuery(".images .item").eq($ss_active).fadeOut(2500);
			jQuery(".images .item").eq($current).fadeIn(2500);
			$ss_active = $current;
		}
		else
		{
			jQuery(".images .item").show();
		}
	});
	
	return false;
}

jQuery(function() {
	slideShow(0);
	 setInterval( "slideShow($ss_active + 1)", 10000 );
});
