$(document).ready(function() {

  $('a#search-disabled').click(function() {
  
    alert('Sorry, search has been temporarily disabled.');
  
  });
  
  $('#home-slideshow').cycle({
  
    pause: 1
  
  });
  
  $('.dropdown a').click(function() {
  
    $(this).parent().next().toggle();
    return false;
  
  });

  $('a#test').click(function() {
  
    $.ajax({
      type: "POST",
      url: '/ajax/post',
      data: 'posted=This is freakin\' awesome!',
      success: function(msg) {
        $('a#test').html(msg);
      }
    });
  
  });

});