$(document).ready(function() {
	$('#topProducts .navigation li').click(function() {
		$(this).parents('.navigation').removeAttr('class').addClass('navigation').addClass($(this).attr('id'));		
		$('#topProducts .tab').removeClass('active');		
		$('#topProducts .tab.' + $(this).attr('id')).addClass('active');
		
		$('#topProducts .tab.' + $(this).attr('id') + ' ul').anythingSlider({
			width: 664,
			height: 230,
			buildNavigation: false,
			buildStartStop: false,
			resizeContents: true,
			autoPlay: true,
			delay: 8000
		});
	});
	
});
