/*
 * Autor: RichellyItalo(Zenitech)
 * Website: Habitat Imóveis
 */


$(document).ready(function(){
    //Removendo todos os <br> dentro dos formuários.
    $(".wpcf7-form").contents().find("br").remove();

    $("#contato input[type=text]").focus(function(){
        if($(this).val() == 'Nome*' || $(this).val() == 'Email*' || $(this).val() == 'Cidade*' || $(this).val() == 'Estado*' || $(this).val() == 'Telefone*'){
            $(this).val(' ');
            }
    }).blur(function(){
        id = $(this).attr("id");
        if($(this).val() == ' ' && id == 'nome') {
            $(this).val('Nome*');
        }else if($(this).val() == ' ' && id == 'cidade'){
            $(this).val('Cidade*');
        }else if($(this).val() == ' ' && id == 'estado'){
            $(this).val('Estado*');
        }else if($(this).val()== ' ' && id == 'email'){
            $(this).val('Email*');
        }else if($(this).val()== ' ' && id == 'telefone'){
            $(this).val('Telefone*');
        }
    });
    $("a[rel^=pretty]").prettyPhoto();

    $('#skip ul').cycle({
        fx:     'scrollVert',
        speed:  'fast',
        pause: true,
        timeout: 6000/*,
        next:   '#arrow_down',
        prev:   '#arrow_up'*/
    });
});

