<!-- funcions generals -->
$(document).ready(function() {
	$("#menuEsq a").mouseover(function() {
		if (document.getElementById('n_2_menu_' + this.id)) {
			document.getElementById('n_2_menu_' + this.id).style.backgroundImage="url('img/menu_opc_bl.png')";
		} else if (document.getElementById('n_3_menu_' + this.id)) {
			document.getElementById('n_3_menu_' + this.id).style.backgroundImage="url('img/menu_opc_bl_n3.png')";
		} else if (document.getElementById('n_4_menu_' + this.id)) {
			document.getElementById('n_4_menu_' + this.id).style.backgroundImage="url('img/menu_opc_bl_n4.png')";
		}				
	});
	$("#menuEsq a").mouseout(function() {
		if (document.getElementById('n_2_menu_' + this.id)) {
			document.getElementById('n_2_menu_' + this.id).style.backgroundImage="url('img/menu_opc_tr.png')";
		} else if (document.getElementById('n_3_menu_' + this.id)) {
			document.getElementById('n_3_menu_' + this.id).style.backgroundImage="url('img/menu_opc_tr_n3.png')";
		} else if (document.getElementById('n_4_menu_' + this.id)) {
			document.getElementById('n_4_menu_' + this.id).style.backgroundImage="url('img/menu_opc_tr_n4.png')";
		}				
	});	
	$("#ForIdioma").change(function() {
		window.location=$("#ForIdioma").val();
	});	
})

