
//<!-- JQuery TAB-->

$(function () {
    var tabContainers = $('div.tabs > div');
    tabContainers.hide().filter(':first').show();

    $('div.tabs ul.tabNavigation a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('div.tabs ul.tabNavigation a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }).filter(':first').click();
});



//<!-- JQuery Highlight-->
function rand(min,max) {
    return Math.floor(Math.random()*(max-min+1)+min);
}

var myRand = function() { return rand(0,255); };
var myRandArray = function() { return [myRand(),myRand(),myRand()]; };
$(function() {
    $('a.light').click(function() {
        $('div#colour').highlightFade({color:'rgb(86, 142, 43)',end:'#eee',speed:4000,iterator:'sinusoidal'});
    });

});


//<!-- JQuery Diplay block-none -->
function visualizeHide(id){
    document.getElementById(id).style.display = 'block';
}
function noVisualize(id){
    document.getElementById(id).style.display = 'none';
}


function visualizeIfCheckedFinanziamentiInCorso(id){
    if (document.mutui_form.finanziamentiInCorso.checked ){
        document.getElementById(id).style.display = 'block';
    }
    else{
        document.getElementById(id).style.display = 'none';
    }
}

//<!-- JQuery Tooltip -->
$(function() {
    $("a.showtooltip").tooltip({
        showURL: false,
        fade: 250
    });
});

 
        
        