/**
* @version		RC 1.0.3.3c 2008-06-22 11:50:00 $
* @package		SkyBlueCanvas
* @copyright	Copyright (C) 2005 - 2008 Scott Edwin Lewis. All rights reserved.
* @license		GNU/GPL, see COPYING.txt
* SkyBlueCanvas is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYING.txt for copyright notices and details.
*/

$(function() {
    $('.dropify').dropify();
});

$.fn.dropify = function() {
    return this.each(function(i) {
      $(this).hover(
          function() {$("ul", this).slideDown("fast");},
		  function() {$("ul", this).slideToggle("fast");}
      );
    });
};