function tabHpNews() {
  $('#abstractListNews div.hp-box-abstract:not(:first)' ).hide();
  
  $('#tabNavNews li').click(function(e) {
    $('#abstractListNews div.hp-box-abstract').hide();
    $('#tabNavNews .current').removeClass("current");
    $(this).addClass('current');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#abstractListNews ' + clicked).fadeIn('fast');
    e.preventDefault();
  }).eq(0).addClass('current');
}

function tabHpProp() {
  $('#abstractListProp div.hp-box-abstract:not(:first)' ).hide();
  
  $('#tabNavProp li').click(function(e) {
    $('#abstractListProp div.hp-box-abstract').hide();
    $('#tabNavProp .current').removeClass("current");
    $(this).addClass('current');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#abstractListProp ' + clicked).fadeIn('fast');
    e.preventDefault();
  }).eq(0).addClass('current');
}

function tabDetail() {
  $('#detailTabContent div.detailTabContentWrap:not(:first)' ).hide();
  
  $('#tabNav li').click(function(e) {
    $('#detailTabContent div.detailTabContentWrap').hide();
    $('#tabNav .current').removeClass("current");
    $(this).addClass('current');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#detailTabContent ' + clicked).fadeIn('fast');
    e.preventDefault();
  }).eq(0).addClass('current');
}

function tabPage() {
  $('#pageContent div.main-CTR:not(:first)' ).hide();
  
  $('#tabNav li').click(function(e) {
    $('#pageContent div.main-CTR').hide();
    $('#tabNav .current').removeClass("current");
    $(this).addClass('current');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#pageContent ' + clicked).fadeIn('fast');
    e.preventDefault();
  }).eq(0).addClass('current');
}

function selectionProposte(_id) {  
	$('.strillo-offerta').removeClass("strillo-active")
	$('#strillo'+_id).addClass("strillo-active");
}
