$(document).ready(function(){

    $('#tip').click(function(){
    
        var html = $('#contact_f').html();
        
        $('#contact_f').slideToggle('slow');
        
        return false;
        
    });
    
    $('#cf_close').click(function(){
    
        $('#contact_f').slideToggle('slow');
    
    });

});
