/*ESTE ARQUIVO JAVASCRIPT FOI DESENVOLVIDO POR PUBLIONLINE BRASIL
http://www.publionline.com.br*/

$(document).ready(function(){
		
		(function($){ // Wrapper to make sure that the $ is used by jQuery and wasn't taken over by another library
			
			//////////////////////////// SCRIPTS DO MENU /////////////////////////////
			$('li.submenu').hover(function(){
				$(this).find('ul:eq(0)')
				.stop(true, true)
				.slideDown(200);
			}, function(){
				$(this).find('ul:eq(0)')
				.stop(true, true)				
				.slideUp(200);
				});
			
			$('li.submenu2').hover(function(){
				$(this).find('ul:eq(0)')
				.stop(true, true)
				.slideDown(200);
			}, function(){
				$(this).find('ul:eq(0)')
				.stop(true, true)				
				.slideUp(200);
				});
			/////////////////////////////////////////////
			
		})(jQuery);
 });


