/*
 * jQuery WLS Menu v1.1 - http://wls.nullpointer.at
 *
*/

  
  $(document).ready(function(){
  
    $("span.dir").hide();
  
    $("div.quad").mouseenter(function() {
      $(this).children('span.dir').fadeIn('fast');
    }).mouseleave(function() {
      $(this).children('span.dir').fadeOut("slow");
    });
                       
    $('#q_list li').hover(function(){
      $(this).animate(
      {width: '+=50'},
      {duration: 'slow', easing: 'easeOutElastic', queue: false}
      ).animate(
      {fontSize: '+=4'},
      {duration: 'slow', easing: 'easeOutCirc', queue: false}
      );               
    
    }, function(){
      $(this).stop()
      .animate(
      {width: '164px', fontSize: '10px'},
      {duration: 'slow', easing: 'easeOutCirc', queue: false}
      );               
    
    });
  
  });

