(function($){

$(function(){
	/*GROUNDWORK
	*Ensure that eah panel is given a unique numeric id, and uses this id to create a navigation
	**/
	
	$('.panel').each(function(i){
		var j = i + 1;
		//add an id to the panel div
		$(this).attr('id', j);
		
		//create an item for it in the navigation
		$('<li><a class="button" href="#' + j + '">' + j + '</a></li>').appendTo('.navigation');
		
	});
	

	$('#slider').codaSlider({
					horizontal: true
				});
 });
})(jQuery);/*end jQuery closure*/