$(document).ready(function () {
	var lang = "";
	var inicio = true;
	$("div.seccion").each(function () {
		$(this).mouseenter(function () {
			$("div.bloque").each(function () {
				if ($(this).hasClass("activo")) {
					inicio = false;
				}
			});
			lang = $(this).attr("id");
			if (!inicio) {
				$("div.bloque").each(function () {
					if ($(this).hasClass("activo")) {
						$(this).hide(0,function () {
							$("#panel_"+lang).addClass("activo");
							$("#panel_"+lang).show(0);			
						});								
					}
				});
			} else {
				$("#panel_"+lang).addClass("activo");
				$("#panel_"+lang).show(0);
			}
		});
	});
	
	$("#var").mouseenter(function () {
		$("div.bloque").hide(0);
	});
});
