$(function() {
	$(".submenu_link").hover(
		function() {
			//var $this = $(this);
			var id = $(this).attr("rel").replace("submenu_", "");
			var width = $(this).width() + (17 * 2);
			var left = $(this).offset().left;
			$("#submenu_" + id).css("left", left).show().find(".linha_topo").css("width", width);
		},
		function() {
			//var $this = $(this);
			var id = $(this).attr("rel").replace("submenu_", "");
			var width = $(this).width() + (17 * 2);
			var left = $(this).offset().left;
			$("#submenu_" + id).hide();
		}
	);
	
	$(".submenu").hover(
		function() {
			$(this).show();
		},
		function() {
			$(this).hide();
		}
	);
});
