(function($) {
	$.fn.dropMenu = function(settings) {
		var config = {'speed': 150};
		
		if (settings) $.extend(config, settings);
		
		var audio=$('#menuaudio').get(0);
		
		this.each(function() {		
			$(this).children('ul:eq(0)').children('li').hover(function() {
								try {
					if (audio.canPlayType) {
						audio.currentTime=0;
						audio.play();
					}
				}
				catch(ex) {}
								$(this).find('li a').stop().css({paddingTop:0, paddingBottom:0});
				$(this).addClass('hover');
				$(this).find('li a').animate({paddingTop:6, paddingBottom:6},{duration:config.speed});				
			}, function() {
				$(this).removeClass('hover');
			});
		});	
		return this;
	};
 })(jQuery);

