$(function(){
    $('#spoiler').click(function(){
        if ($('.info .text').css('display') == 'none'){
            $('.info .text').show('fast');
        }
        else {
            $('#spoiler_hide').click();
        }
        
    });
    $('#spoiler_hide').click(function(){
        $('.info .text').hide('fast');
    });
    $('#contacts').click(function(){
        if ($('.contacts .text').css('display') == 'none')
        {
            var sText1 = '+38 097 873-27-90<br/>';
            var sText21 = 'ba';
            var sPoppA = 'ent@plate';
            var sText23 = 'anagem';
            var sTTa = 'nd_m';
            var sText25 = 'music.com<br/>';
            var sText3 = 'icq: 125762160';
            $('.contacts .text').html(sText1 + sText21 + sTTa + sText23 + sPoppA + sText25 + sText3);
            $('.contacts .text').show('fast');
        }
        else
        {
            $('.contacts .text').hide('fast');
            $('.contacts .text').html('');
        }

    })
})
