<!--
  $(document).ready(function() {
    $("a.jquery-hover").hover(function(){
      $(this).fadeTo(150,0);
    },
    function(){
      $(this).fadeTo(300,1);
    });
    
    $("#side-navi a").blend({speed:180});
    
    $("a.sidenavi1").hover(function(){
      $(this).animate({height:60});
    });
    
    $("a.sidenavi2").hover(function(){
      $(this).animate({height:61});
    });
    
    $("a.sidenavi3").hover(function(){
      $(this).animate({height:66});
    });
    
    $("a.sidenavi4").hover(function(){
      $(this).animate({height:64});
    });
    
    $("a.sidenavi5").hover(function(){
      $(this).animate({height:70});
    });
    
    $("a.sidenavi6").hover(function(){
      $(this).animate({height:63});
    });
    
    $("a.jquery-text-hover").hover(function(){
      $(this).animate({ color: "#a98f40" }, 150);
    },
    function(){
      $(this).animate({ color: "#666" }, 300);
    });
  }); 
-->
