/*
 * Droppy 0.1.2
 * (c) 2008 Jason Frame (jason@onehackoranother.com)
 */
jQuery.fn.droppy = function(options) {
    
  options = jQuery.extend({speed: 250}, options || {});
  
  this.each(function() {
    
    var root = this, zIndex = 1000;
    
	jQuery('ul li', root).hover(
		function() {
			jQuery(this).find('ul').stop(true, true); // останавливаем всю текущую анимацию
            jQuery(this).find('ul').slideDown();
		},
		
		function() {
			jQuery(this).find('ul').slideUp('fast');
		}
	);
	
  });
};


jQuery(document).ready(function(){
    
});


