function blendImages(container,fade_time,visible_time) {
 /*   $(container+' img:gt(0)').hide();
    setInterval(function(){
	  $(container+' :first-child')
         .next('img')
		 .fadeIn(fade_time/4,function() {
		 	$(container+' :first-child').fadeOut(fade_time);
		 }())
         .end().appendTo(container);}, 
      visible_time);*/
	
	$(container).children().eq(0).appendTo(container).show();
	setInterval(function() {
		$(container+' :first-child')
			.hide()
			.appendTo(container)
			.fadeIn(fade_time);
	}, visible_time);
}

$(function(){
	$('body').addClass('js');
	blendImages('#models',2500,5500);
	blendImages('#rings',2500,4500);
});