jQuery(function($) {
	

	var center = $(".wrapper").height() + $(".content").height();
	var col_sx = $(".col_sx").height();
	
	if( col_sx < center ){
		var sx_height = center - col_sx;
		$(".sx_height").css("height", sx_height + "px");
	}
	
	/*$(".navigation_left > ul > li > a").click(function(){
		$(this).parent("").children("ul").slideDown();
		$(this).children("ul").slideUp();
		return false;
	});*/
	var file = jQuery.url.attr("file");
	
	var azienda_file = new Array("azienda.php", "settori_di_attivita.php", "stabilimenti.php", "mission_aziendale.php", "brand_alimentare.php", "brand_detergenza_domestica.php", "brand_detergenza_i.php", "cenni_storici.php" );
	var ricerca_e_sviluppo_file = new Array("ricerca_sviluppo.php", "progetto_prodotto.php", "metodi_ricerca.php" );
	var mercati_e_prodotti_file = new Array("mercati_e_prodotti.php", "produzione_per_cliente.php", "prodotti_a_marchio_aziendale.php", "prodotti_scala_professional.php", "customer_satisfaction.php", "questionari.php" );
	var i_nostri_valori_file = new Array("i_nostri_valori.php", "qualita.php", "ambiente.php", "etica_socialita.php", "rapporti_sociali_e_territorio.php", "modello_organizzativo.php" );
	var contatti_file = new Array("contatti.php", "richiesta_informazioni.php", "rete_di_vendita.php", "reclami_su_prodotti.php" );
	var lavoro_file = new Array("lavoro.php", "invio_cv.php", "ricerca_personale.php" );
	var press_file = new Array("press.php", "comunicati.php");
	var news_file = new Array("news.php");
	var sondaggi_file = new Array("sondaggi.php");
	
	if( file != null ){
		for(i = 0; i < 20; i++){
			if( azienda_file[i] == file ){
				$("#azienda_btn").children("ul").show();
				$("#azienda_btn").addClass('active');
			}
			if( ricerca_e_sviluppo_file[i] == file ){
				$("#ricerca_e_sviluppo_btn").children("ul").show();
				$("#ricerca_e_sviluppo_btn").addClass('active');
			}
			if( mercati_e_prodotti_file[i] == file ){
				$("#mercati_e_prodotti_btn").children("ul").show();
				$("#mercati_e_prodotti_btn").addClass('active');
			}
			if( i_nostri_valori_file[i] == file ){
				$("#i_nostri_valori_btn").children("ul").show();
				$("#i_nostri_valori_btn").addClass('active');
			}
			if( contatti_file[i] == file ){
				$("#contatti_btn").children("ul").show();
				$("#contatti_btn").addClass('active');
			}
			if( lavoro_file[i] == file ){
				$("#lavoro_btn").children("ul").show();
				$("#lavoro_btn").addClass('active');
			}
			if( press_file[i] == file ){
				$("#press_btn").children("ul").show();
				$("#press_btn").addClass('active');
			}
			if( news_file[i] == file ){
				$("#news_btn").children("ul").show();
				$("#news_btn").addClass('active');
			}
			if( sondaggi_file[i] == file ){
				$("#sondaggi_btn").children("ul").show();
				$("#sondaggi_btn").addClass('active');
			}
		}
	}
	if (file != null){
		$(".navigation_left ul li ul li a").each( function(){
			if( $(this).attr("href") == file ){
				$(this).addClass('active');
			}
		});
	}
});

