$(function() {
	$(document).ready(function() {
							   
		$('#dock').Fisheye({
			maxWidth: 28,
			items: 'a',
			itemsText: 'span',
			container: '.dock-container',
			itemWidth: 62,
			proximity: 80,
			alignment : 'left',
			valign: 'bottom',
			halign : 'center'
		})

		function addMega(){
			$(this).addClass("hovering");
		}
		
		function removeMega(){
			$(this).removeClass("hovering");
		}
		
		var megaConfig = {
			interval: 100,
			sensitivity: 4,
			over: addMega,
			timeout: 100,
			out: removeMega
		};
		
		$("li.mega").hoverIntent(megaConfig);


		$("a#popup").click();


	
	});
});


