$(function () { 
	// Dock initialize
	$('#dock').Fisheye(
		{
			maxWidth: 70,
			items: 'a',
			itemsText: 'span',
			container: '.dock-container',
			itemWidth: 220,
			proximity: 130,
			alignment : 'left',
			valign: 'bottom',
			halign : 'center'
		}
	);
	
	// No IE 6
	$.each($.browser, function(i, val) {
	   if(i=="msie" && $.browser.version.substr(0,1)=="6")
	    $('#browser').fadeIn();
	 });
});
