$( document ).ready(function(){
    $( '#busca-campo-menu, #busca-campo' ).focus(function(){
        $this = $(this);
        if( $this.val() == 'digite')
            $this.val('');
    }) .blur(function(){
        $this = $(this);
        if( $this.val() == '')
            $this.val('digite');
    })
    $( '#newsletter-nome' ).focus(function(){
        $this = $(this);
        if( $this.val() == 'seu nome')
            $this.val('');
    }) .blur(function(){
        $this = $(this);
        if( $this.val() == '')
            $this.val('seu nome');
    })
    $( '#newsletter-email' ).focus(function(){
        $this = $(this);
        if( $this.val() == 'seu e-mail')
            $this.val('');
    }) .blur(function(){
        $this = $(this);
        if( $this.val() == '')
            $this.val('seu e-mail');
    })
    
    $('.skype').mouseover(function() {

        }).click(function(e) {
        e.preventDefault();
        switch ($(this).attr('href')) {
            case '#vendas':
                $(' .tooltip_skype_vendas ').show();
                $(' .tooltip_skype_suporte').hide();
                break;
            case '#suporte':
                $(' .tooltip_skype_suporte').show();
                $(' .tooltip_skype_vendas').hide();
                break;
        }
        
        $('#tooltip_skype').toggle();
    })
    
    
    
});
