var root = "/";

/// <reference path="jquery/jquery-1.3.2-vsdoc.js" />
$.fn.corner.defaults.useNative = false;

$(document).ready(function() {
    $("a[href^='mailto:']").each(function() {
        if ((this.href.indexOf('cert.it') == -1) && (this.href.indexOf('@pec.') == -1))
            this.href = this.href.replace("mailto:", root + "contattaci.aspx?a=");
    });

    //Controlla Lunghezza Titoli Menu Destro-Sinistro
    $("li.voiceParent > a").each(function() {

    if ($(this).text().length >= 21) {

        $(this).parent().css("font-size", "8.6pt");
        $(this).parent().css("line-height", "12px");

        if ($(this).text().length < 30) 
            $(this).parent().css("padding", "14px 0px 0px 15px");
        else 
                $(this).parent().css("padding", "8px 0px 0px 15px");
        }
    });

    if ($.browser.msie && $.browser.version.substr(0, 1) == "6") {

        //FIX PNG IE
        $.iepngfix('img');
        $.iepngfix('.voiceParent');
        $.iepngfix('#header');
        $.iepngfix('#menuTopVoices > li');

    }
    else $("div.ico").corner("10px");
});

function search() { window.location.href = root + "cerca_nel_sito.aspx?txt=" + urlEncode(document.getElementById('ctl00_txtSearch').value); }

function urlEncode(str) { return escape(str).replace('%3C', '').replace('%3E', '').replace('+', '').replace('%20', '').replace('*', '').replace('/', '').replace('<', '').replace('<', ''); }
