$(document).ready(function(){
  $.smoothAnchors(3000, "swing", false);
  
  $("img:not([title])").each(function() {
	$(this).attr("title", $(this).attr("alt"))
  })
 // $('table.project img[title],img.left[title]').hovertip();
 $("table.project img[title],img.left[title]").wTooltip({ 
	style: { 
	   color: "#fff",
	   background: "#000"
    } 
  }); 
  
  $("#content-inner").css({'opacity':0});
  $("#content-inner").animate({'opacity':1},800);
  
  /*$("#nav li").hover(function(){
	$(this).children("ul").slideToggle();
	},function(){
	$(this).children("ul").slideToggle();
  });*/
});