﻿//$(function() {
//    $("#show_ctc").click(do__showctc);
//});

$(function() {
    $("#show_ctc").click(do__showctc);
    $("#show_ctc").mouseover(do__underline_ctc);
    $("#show_ctc").mouseout(do__desunderline_ctc);
    $("#hide_ctc").click(do__hidectc);
    $("#ofertas_ono").mouseover(do__underline_ofertas);
    $("#ofertas_ono").mouseout(do__desunderline_ofertas);
    $("#no_cliente").mouseover(do__underline_nocliente);
    $("#no_cliente").mouseout(do__desunderline_nocliente);
    //do__showctc();
});

function do__underline_ctc() {
    $("#show_ctc span.home_precio").css("text-decoration", "underline");
    $("#show_ctc span.home_contratalo").css("color", "#00A3DE");
}

function do__desunderline_ctc() {
    $("#show_ctc span.home_precio").css("text-decoration", "none");
    $("#show_ctc span.home_contratalo").css("color", "#666");
}

function do__underline_ofertas() {
    $("#ofertas_ono h6").css("text-decoration", "underline");
}

function do__desunderline_ofertas() {
    $("#ofertas_ono h6").css("text-decoration", "none");
}

function do__underline_nocliente() {
    $("#no_cliente h6").css("text-decoration", "underline");
}

function do__desunderline_nocliente() {
    $("#no_cliente h6").css("text-decoration", "none");
}

function do__showctc() {
    $("#home1v_promos").animate({ opacity: 0 }, 50);
    $("#home1v_promos").css("display", "none");

    $("#home1v_ctc").css("opacity", "0");
    $("#home1v_ctc").css("display", "block");
    $("#home1v_ctc").animate({ opacity: 1 }, 200);
}

function do__showctc_without_effect() {
    $("#home1v_promos").css("display", "none");
    $("#home1v_ctc").css("display", "block");
}

function do__hidectc() {
    $("#home1v_ctc").animate({ opacity: 0 }, 400);
    $("#home1v_ctc").css("display", "none");

    $("#home1v_promos").css("opacity", "0");
    $("#home1v_promos").css("display", "block");
    $("#home1v_promos").animate({ opacity: 1 }, 400);
    
}