$(function() 
	{
	$(document).ready(function() 
	{
		$("#navigator").fadeIn("slow");
		$("#dock").show();
		$("#SlideShow").cjSimpleSlideShow();
	});
	$('#dock').Fisheye(
				{
					maxWidth: 30,
					items: 'a',
					itemsText: 'span',
					container: '.dock-container',
					itemWidth: 50,
					proximity: 50,
					halign : 'center'
				}
			);
	
	});	
	$(function(){
				// Dialog			
				$('#dialog').dialog(
				{
					bgiframe: true,
					autoOpen: false,
					width: 900,
					position:['center', 'top'],
					open: function(event, ui) 
					{  
					
					
					}
				});
				
				// Dialog Link
				$('#dialog_link').click(function(){
					
					//$('#dialog').load('./info.html');
					$.ajax({  
							type: "POST",  
							url: "./info.html",  
							success: function(theResponse) 
							{
								$('#dialog').html(theResponse);
								$('#dialog').dialog('open');						
							}	
						}); 
					return false;
					});

			});