// Cabral Creative
// jQuery/JS for custom WordPress theme

jQuery(document).ready(function($){	

	/* Build nav links (1, 2, 3, etc.) for Portfolio pages */
	if($("div.items")) {
		$("div.items * img").each(function(i) {
			$("ul#mainMenuLevel2").append('<li><a href="#">'+(i+1)+'</a></li>');
		});
	}
	
	$("a.overlayBox[rel]").click(function() { 
	    $(this).overlay({ 
	        expose: { 
	        color: '#000', 
	        loadSpeed: 250, 
	        opacity: 0.8 
	    },
	    left: 'center',
	    top: '15%',
	    closeOnClick: true, 
	    api: true
		}).load();
	});
	
	$("div.scrollable").scrollable({
		size: 1,
		keyboard: true,
		easing: 'swing',
		speed: 750
	}).navigator({
		navi: 'ul#mainMenuLevel2',
		naviItem: 'li a',
		activeClass: 'active'
	});
});