$(document).ready(function() { 

/* 	$(".left-nav-cont").sticky({topSpacing:100}); */
	// Set up Sliders
	$(function() {
		$('.project-gallery').anythingSlider({
			easing: 'swing',
			buildStartStop: false,
			buildArrows: false,
			backText: "Prev",
			forwardText: "Next",
			animationTime: 300,
			autoPlay: true,
			onSlideComplete: function(slider) {}
		}); //make sure controls are centered
		controlSize = $('ul.thumbNav').width();
		$('div.anythingControls').css('width', controlSize);
	}); 
	
	
	// menu servicios
	
	$(".page-servicios,.single-servicios").find("ul.left-nav-cont").children("li").children("a").bind("click", function(evt) {
		evt.preventDefault();
		evt.stopPropagation();
		$(this).parent().children(".submenu").slideToggle("fast");
	});
});

