﻿$(document).ready(function(){

    $('#quotes').innerfade({
      speed: 2000,
      timeout: 10000,
      type: 'sequence',
      containerheight: '8em'
    });

   $("a.ask").click(function(){
     $(".answer").slideToggle('slow');
   });

});





$(document).ready(function(){

  $('.line a').hover(function() {
    $('.default').hide();
}, function() {
    $('.default').show();
  });

  $('.one a').hover(function() {
    $('.first').show();
}, function() {
    $('.first').hide();
  });

  $('.two a').hover(function() {
    $('.second').show();
}, function() {
    $('.second').hide();
  });

  $('.three a').hover(function() {
    $('.third').show();
}, function() {
    $('.third').hide();
  });

  $('.four a').hover(function() {
    $('.fourth').show();
}, function() {
    $('.fourth').hide();
  });

});