$(document).ready(function() {
 
 
    $('ul#topnav li,ul#leftnav li').hover(function() {
	$(this).addClass('selected');
    $('ul:first', this).stop(true, true).slideDown("fast");


  },
  function() {
    $('ul:first', this).stop(true, true).slideUp("fast");
	$(this).removeClass('selected');
  });


 
});
/*
			(function($){
				$.fn.extend({
					//plugin name - animatemenu
					webtoolkitMenu: function(options) {
						return this.each(function() {
 
							//Assign current element to variable, in this case is UL element
							var obj = $(this);
 
							$("li ul", obj).each(function(i) {
								$(this).css('top', $(this).parent().outerHeight());
							})
 
							$("li", obj).hover(
								function () { $(this).addClass('over'); },
								function () { $(this).removeClass('over'); }
							);
 
						});
					}
				});
			})(jQuery);
 
			$(document).ready(function() {
					$('#topnav').webtoolkitMenu();
			});
*/

