$(document).ready(function(){
	$(document).everyTime(6000, 'rotate', function(){		
			if ($('#brand-bins li.active').next("li").length > 0){
				$next = $('#brand-bins li.active').next("li");
				if ($next.hasClass("bin-separator")){
					$next.next("li").trigger('click');
				} /*else {
					$next.trigger('click');
				}*/
			} else {
				$('#brand-bins li:first-child').trigger('click');
			}
		});
		
		$("#brand-content-container, #brand-bins").mouseenter(function(){
			$('body').data('hover', true);
			$(document).stopTime('rotate');
		}).mouseleave(function(){
			$('body').data('hover', false);
			setTimeout(function(){
				if(!$('body').data('hover')){
					$(document).stopTime('rotate');
					$(document).everyTime(6000, 'rotate', function() {
							if ($('#brand-bins li.active').next("li").length > 0){
							$next = $('#brand-bins li.active').next("li");
							if ($next.hasClass("bin-separator")){
								$next.next("li").trigger('click');
							} /*else {
								$next.trigger('click');
							}*/
							} else {
								$('#brand-bins li:first-child').trigger('click');
							}
					});
				}
			}, 10000);
			
		});
});
