function openSection(section) {
	var newWin;

	switch(section) {
// menu: HOME
	case 0:
        location = "./";
		break;
// menu: CHI SIAMO
	case 1:
        newWin = window.open("http://www.cts.it/index.cfm?module=ActiveWeb&page=Webpage&s=CTSInItaly", "_blank");
		break;
// menu: IL BELLO DI ESSERE SOCIO
	case 2:
    	newWin = window.open("http://www.cts.it/index.cfm?module=cts", "_blank");
		break;
// menu: PRIMA DI PARTIRE
	case 3:
        location = "primadipartire.cfm";
		break;
// menu: DOVE VUOI ANDARE
	case 4:
        location = "dovevuoiandare.cfm";
		break;
// menu: LE SEDI
	case 5:
        newWin = window.open("http://www.cts.it/index.cfm?Module=Office&Page=CTSOffices", "_blank");
	    break;
// splash: IL BELLO DI ESSERE SOCIO
	case 6:
    	newWin = window.open("http://www.cts.it/index.cfm?module=cts", "_blank");
		break;
// splash: CTS 09 LA GUIDA (not used)
	case 7:
		break;
// splash: DOVE VUOI ANDARE
	case 8:
        location = "dovevuoiandare.cfm";
		break;
// splash: CTS LOGO (not used)
    case 9:
    	newWin = window.open("http://www.cts.it", "_blank");
	    break;
// splash: CTS CARD
    case 10:
    	newWin = window.open("http://www.cts.it/index.cfm?module=CTS&page=Inscriviti", "_blank");
	    break;
// sezione CHI SIAMO-> sottosezione
    case 11:
    	newWin = window.open("http://www.cts.it/index.cfm?module=discounts&type=studying", "_blank");
	    break;
	}
}