$(function () { 
	// Dock initialize
	$('#dock').Fisheye(
		{
			maxWidth:55,
			items: 'a',
			itemsText: 'span',
			container: '.dock-container',
			itemWidth: 45,
			proximity: 30,
			alignment : 'left',
			valign: 'bottom',
			halign : 'center'
		}		
	);
	$('#dockhome').animate({    
    width:'300px'	
  }, 500);
  $('#dockhome').animate({    
    width:'-=250px'	
  }, 500);  
  

tab =function(event) {	
  if (event.keyCode == '9'){
	  if(event.target.nodeName=='INPUT')   
	  return true;
	  else
	 return false;	 
  }};
  
$(document).keydown(tab);


});
