

$(document).ready(function() {

 // toggles the slickbox on clicking the noted link
  $('.close>a').click(function() {
 $('.scrollable').toggle(400);
 return false;
  });
  
$(".navlink").hover(function(){
  $(".navlink").animate({ 
    width: "70%",
    opacity: 0.4,
    marginLeft: "0.6in",
    fontSize: "1.4em", 
    borderWidth: "10px"
  }, 1500 );
});
  


$("a.navlink2").hover(function(){
												 
		
	$(this).animate({opacity: "0.4", fontSize: "0.8em",}, "fast");
$(this).animate({opacity: "1.0", fontSize: "0.8em"}, "fast");

		 return false;		   
		});


$("#ai").hover(function(){
												 
		
	$("#ai img").animate({"opacity": "0.1"}, "fast");
$("#ai img").animate({"opacity": "0.5"}, "fast");
return false;	
				   
		})

  
});




	

