/*
 * Nome: gmt.js
 * Desenvolvido por: Webee E-marketing
 * Data da Criação: 17-06-2009
 * Copyright (c) 2009 Webee E-marketing (http://www.webee.com.br)
 */
$(document).ready(function(){
	$(".menu li.submenu").each(function(){
		var el = $("#" + $(this).attr("id") + " ul:eq(0)")
		 
		$(this).hover(function(){ 
			el.fadeIn(200)
		}, function(){ 
			el.fadeOut(100)
		})
	})
	$('a.external').attr('target','_blank')
})
