	$(document).ready(function(){

   	$('#slider').s3Slider({
      		timeOut: 4000
   	});

            $('.recommendations').anythingSlider({
                easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
                autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
                delay: 5000,                    // How long between slide transitions in AutoPlay mode
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                animationTime: 600,             // How long the slide transition takes
                hashTags: false,                 // Should links change the hashtag in the URL?
                buildNavigation: true          // If true, builds and list of anchor links to link to each slide
            });


	});


function showdiv(div){

	if (div=='category_list'){
		document.getElementById("category_list").style.display = 'block';
		document.getElementById("brand_list").style.display = 'none';
		document.getElementById("nav_category_list").className = 'toolsdown';
		document.getElementById("nav_brand_list").className = 'brands';
	}

	if (div=='brand_list'){
		document.getElementById("category_list").style.display = 'none';
		document.getElementById("brand_list").style.display = 'block';
		document.getElementById("nav_category_list").className = 'tools';
		document.getElementById("nav_brand_list").className = 'brandsdown';
	}

}
