
$(document).ready(function(){

	$(".nav li a").click(function(){
		$("#ajax_content").load("http://www.apconsultingla.com" + $(this).attr('id'), function(response, status, xhr) {
			$('#dock2').add_dock();
		  if (status == "error") {
		    var msg = "Sorry but there was an error: ";
		    alert(msg + xhr.status + " " + xhr.statusText);
		  }
			
		});
		
		return false;
	});
	
	
	
	$('#dock2').add_dock();


});

jQuery.fn.add_dock = function() {

	$(this[0]).Fisheye(
		{
			maxWidth: 80,
			items: 'a',
			itemsText: 'span',
			container: '.dock-container2',
			itemWidth: 60,
			proximity: 80,
			alignment : 'left',
			valign: 'bottom',
			halign : 'center'
		}
	);
};

