$(function(){
			$("img[id*='img_']").each( function(){
										var id =  $(this).attr('id');
										if( id.indexOf(_globalApartado) != -1 ){
											$(this).attr('src',"images/bulletApartadoOn.jpg");
											}
										else
											$(this).attr('src',"images/bulletApartado.jpg")
								 })
																  
			$("a[id*='menu_"+_globalApartado+"']").each( function() {
													$(this).css({'color':'#faa635'})
													$(this).css({'background-color':'#eee'})
													})
			
			$("a[href*='lang="+_globalLang+"']").each( function() {
										$(this).css({'color':'#faa635'})
										})
			
			var tablaW = $('.tablaContenido').height();
			var tdUpW = 60;
			var tdDownW = 185;		
			$('.tdLateral').height(tablaW-tdUpW-tdDownW);
						
		})
	
